Skip to content

Instantly share code, notes, and snippets.

@hadrienblanc
Created November 26, 2019 15:02
Show Gist options
  • Save hadrienblanc/9c4d80dee84369521a16f053467cead8 to your computer and use it in GitHub Desktop.
Save hadrienblanc/9c4d80dee84369521a16f053467cead8 to your computer and use it in GitHub Desktop.
SELECT table_schema AS "Database",
ROUND(SUM(data_length + index_length) / 1024 / 1024, 2) AS "Size (MB)"
FROM information_schema.TABLES
GROUP BY table_schema;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment