Database - SQL for Database Construction - Discussion
|
|
|
|
Read more:"Forgiveness is a virtue of the brave."
- Indira Gandhi
|
| 5. |
The SQL statement to create a view is: |
| [A]. |
CREATE VIEW. | | [B]. |
MAKE VIEW. | | [C]. |
SELECT VIEW. | | [D]. |
INSERT VIEW. |
Answer: Option B
Explanation:
No answer description available for this question.
|
|
Abiji said:
(Sun, Dec 11, 2011 04:40:00 PM)
|
|
| |
| It is a prdefined statement to define a view. |
|
Yogesh Jadhao,Pusad said:
(Tue, Sep 4, 2012 11:42:21 PM)
|
|
| |
| create view <view name> as(select <attributes_name>from<table_name>); |
|
|