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