InterviewSolution
Saved Bookmarks
| 1. |
What is the result of the above query?(a) It creates a view named studentdet with 3 attributes(b) It creates a view named studentdet with 1 attribute(c) It creates a view named ID with 2 attributes(d) It is syntactically wrong and does not give a result |
|
Answer» Right choice is (d) It is syntactically wrong and does not give a result Best explanation: immediately after specifying the name of the view, we have to write the “as” keyword. So this query does not give any result as it is syntactically incorrect. |
|