Q. In the following SQL query, what does "person" stands for?
Code:
INSERT INTO person (person_id, fname, lname) VALUES (1,’S’,’P’);
β
Correct Answer: (C)
Table name
Explanation: This question is about understanding the basic structure of an SQL query. Let's break down the code: