Skip to content

Instantly share code, notes, and snippets.

@ssskip
Created February 2, 2015 06:29
Show Gist options
  • Save ssskip/419c05c3781360a1d79a to your computer and use it in GitHub Desktop.
Save ssskip/419c05c3781360a1d79a to your computer and use it in GitHub Desktop.
query table size in db
SELECT table_name AS "table",
round(((data_length + index_length) / 1024 / 1024), 2) "size(MB)"
FROM information_schema.TABLES
WHERE table_schema = "$dbName"
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