Google News
logo
MySQL - Quiz(MCQ)
With MySQL, how can you return the number of records in the "Persons" table?
A)
SELECT NO(*) FROM Persons
B)
SELECT LEN(*) FROM Persons
C)
SELECT COUNT(*) FROM Persons
D)
SELECT COLUMNS(*) FROM Persons

Correct Answer :   SELECT COUNT(*) FROM Persons

Advertisement