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
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network

Join The Discussion