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

Last updated 4 years, 8 months ago | 1017 views 75     5

Tags:- MySQL

MySQL | Find the number of rows in a table

We can use the below query to count the number of rows in a table

>SELECT COUNT(*) FROM table_name;