Q. Identify the table name in the following SQL statement.
INSERT INTO student VALUES('Kyle','M',NULL);
INSERT INTO student VALUES('Kyle','M',NULL);
β
Correct Answer: (A)
Student
Explanation: This SQL statement is about adding new information into a table. The word "INSERT INTO" tells us that we are adding data. The word "VALUES" indicates the data we are adding.