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;A. Table name
B. Attribute
C. Multivalued attribute
D. None of the mentioned
Answer: Option A
Solution (By Examveda Team)
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.To get this data, you need to specify the table name from where the data should be retrieved.
In this case, "person" is the name of the table that holds the data.
So the answer is Option A: Table name

Join The Discussion