Skip to content

Instantly share code, notes, and snippets.

@kaznovac
Created October 10, 2017 14:24
Show Gist options
  • Save kaznovac/378e923204910bccc3a3628e838eaf6f to your computer and use it in GitHub Desktop.
Save kaznovac/378e923204910bccc3a3628e838eaf6f to your computer and use it in GitHub Desktop.
SELECT
table_schema AS `Database`,
table_name AS `Table`,
table_rows AS `Table rows`,
ROUND(((data_length + index_length) / 1024 / 1024), 2) AS `Size in MB`
FROM information_schema.TABLES
ORDER BY (data_length + index_length) DESC
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment