How do I count the number of records in a MySQL query?
select count(*) from TABLE_NAME where 'status' = 1;
BY Best Interview Question ON 29 Dec 2020
select count(*) from TABLE_NAME where 'status' = 1;