Q. What will be the output of the following SQL statement?
SELECT *
FROM person;
SELECT *
FROM person;
β
Correct Answer: (A)
Show all rows and columns of table "person"
Explanation: This question is about how to retrieve data from a table in MySQL.