Q. What is abc in the following MySQL statement?
CREATE VIEW xyz (abc) AS SELECT a FROM t;
CREATE VIEW xyz (abc) AS SELECT a FROM t;
β
Correct Answer: (B)
column name
Explanation: This question asks you to identify what "abc" represents in the given MySQL code. Let's break down the code first: