Q. How can you select the top 5 rows in a table?
β
Correct Answer: (A)
SELECT * FROM table LIMIT 5;
Explanation: `LIMIT 5` returns the first 5 rows from the result set.