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

Last updated 5 years, 7 months ago | 1336 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;