Q. What does this query return?
Code:SELECT COUNT(*) FROM users;
β
Correct Answer: (B)
Number of users
Explanation: `COUNT(*)` returns the total number of rows in the table.