How to get the sizes of the tables of a MySQL database?
Asked 07 September, 2021
Viewed 679 times
  • 51
Votes

I can run this query to get the sizes of all tables in a MySQL database:

show table status from myDatabaseName;

I would like some help in understanding the results. I am looking for tables with the largest sizes.

Which column should I look at?

17 Answer