Skip to content

Instantly share code, notes, and snippets.

@sambengtson
sambengtson / tablesize.sql
Created October 25, 2016 13:45
Mysql order tables by size
SELECT
table_schema as `Database`,
table_name AS `Table`,
round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`
FROM information_schema.TABLES
where table_schema = '<insert schema name>'
ORDER BY (data_length + index_length) DESC;