Create View

Write an SQL statement to create views.

Questions by shameem_chandu

Showing Answers 1 - 15 of 15 Answers

jpundalik

  • Dec 29th, 2009
 

Below is the syntax for creating the view (simple view)

create view <view_name> as select * from <table_name> [where condistions]

Example

create view emp_vw as select * from emp where emp_id ='12345';

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions