Q. What will be the output of of the following SQL statement?
SELECT person_id, Fname, lname
FROM person;
SELECT person_id, Fname, lname
FROM person;
β
Correct Answer: (A)
Show only columns (person_id, Fname, lname) and rows related to these columns
Explanation: This SQL statement is asking the database to show you some information from a table called "person".