-
abc in the following statement is ____________.
CREATE VIEW xyz (abc) AS SELECT a FROM t;
-
- column name
- row name
- database
- view
- None of these
Correct Option: A
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.