Database - SQL for Database Construction - Discussion

Discussion Forum : SQL for Database Construction - General Questions (Q.No. 5)
5.
The SQL statement to create a view is:
CREATE VIEW.
MAKE VIEW.
SELECT VIEW.
INSERT VIEW.
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
2 comments Page 1 of 1.

Yogesh jadhao,pusad said:   1 decade ago
create view <view name> as(select <attributes_name>from<table_name>);

Abiji said:   1 decade ago
It is a prdefined statement to define a view.

Post your comments here:

Your comments will be displayed after verification.