Interview Questions

How can we find the number of rows in a table using MySQL?

PHP Interview Questions and Answers


(Continued from previous question...)

How can we find the number of rows in a table using MySQL?

Use this for MySQL

SELECT COUNT(*) FROM table_name;

(Continued on next question...)

Other Interview Questions