Q. What does the following SQL do?
Code:
SELECT * FROM customers LIMIT 5;
β
Correct Answer: (C)
Fetches first 5 records
Explanation: The `LIMIT 5` clause restricts the output to the first 5 rows.