Q. What is the table name in the following SQL code?
INSERT INTO student VALUES('Kyle','M',NULL);
INSERT INTO student VALUES('Kyle','M',NULL);
β
Correct Answer: (A)
student
Explanation: This question is about understanding the basic structure of an SQL query.