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

Last updated 6 years, 4 months ago | 1969 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;