What is the MySQL command to retrieve the count of records in a table?
You have to use count() returns the number of rows that matches a specified criteria
select count(*) from table_name;