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

Last updated 7 years ago | 2372 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;