Q. xyz in the following statement is ____
Code:
CREATE VIEW xyz AS SELECT a, b FROM t;
β
Correct Answer: (D)
view
Explanation: A ‘View’ is created in MySQL by writing the clause ‘CREATE VIEW’ followed by the view name. Then follows the list of column names of the table that are to be presented as the view.