Skip to content

Instantly share code, notes, and snippets.

@energee
Created July 2, 2020 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save energee/6d5333388d5e28b557e821b67456ab0f to your computer and use it in GitHub Desktop.
Save energee/6d5333388d5e28b557e821b67456ab0f to your computer and use it in GitHub Desktop.
Get size of all Tables
SELECT
TABLE_NAME AS `Table`,
ROUND((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024) AS `Size (MB)`
FROM
information_schema.TABLES
WHERE
TABLE_SCHEMA = "db"
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