Skip to content

Instantly share code, notes, and snippets.

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 ManiruzzamanAkash/6eb5694b9dd883602fc019b76f09f83a to your computer and use it in GitHub Desktop.
Save ManiruzzamanAkash/6eb5694b9dd883602fc019b76f09f83a to your computer and use it in GitHub Desktop.
Get a database full tables and their size in MB
-- Database:cart_pulse
SELECT
TABLE_NAME AS `Table`,
ROUND((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024) AS `Size (MB)`
FROM
information_schema.TABLES
WHERE
TABLE_SCHEMA = 'cart_pulse'
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