-
What is abc in the following statement?
CREATE VIEW xyz (abc) AS SELECT a FROM t;
-
- view
- database
- column name
- row name
- None of these
Correct Option: C
Column names for a view can be explicitly provided in the ‘CREATE VIEW’ clause itself. It presents the table view with the aliased column names instead of the original column names.