Q. In the following SQL command "person" stands for?
SELECT person_id, fname, lname, Birth_date FROM person;
SELECT person_id, fname, lname, Birth_date FROM person;
β
Correct Answer: (A)
Table name
Explanation: This SQL command is used to fetch data from a table. The command is asking to select specific columns: person_id, fname, lname, and Birth_date.