Q. What does 'abc' & 'xyz' specify in the following SQL statement?
CREATE TABLE abc (xyz);
CREATE TABLE abc (xyz);
β
Correct Answer: (A)
table name and column specs
Explanation: This question asks you to identify what the words 'abc' and 'xyz' represent in the given SQL statement. Let's break it down: