Skip to content

Instantly share code, notes, and snippets.

@januszm
Created September 25, 2023 21:24
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 januszm/3f5d644a12c34ff6d6a7f88908ce8d98 to your computer and use it in GitHub Desktop.
Save januszm/3f5d644a12c34ff6d6a7f88908ce8d98 to your computer and use it in GitHub Desktop.
MySQL tables size
SELECT
TABLE_NAME AS `Table`,
ROUND((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024) AS `Size (MB)`
FROM
information_schema.TABLES
WHERE
TABLE_SCHEMA = "mydatabase"
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