Skip to content

Instantly share code, notes, and snippets.

@phette23
Created March 31, 2021 14:56
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 phette23/f1ff11d55adbacbcb82c8bab95d18ebb to your computer and use it in GitHub Desktop.
Save phette23/f1ff11d55adbacbcb82c8bab95d18ebb to your computer and use it in GitHub Desktop.
get size of mysql tables in a database
SELECT table_name AS "Table",
ROUND(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)"
FROM information_schema.TABLES
-- replace DATABASE with the name of the db
WHERE table_schema = 'DATABASE'
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