Created
July 18, 2020 09:33
-
-
Save aivis/b8fd504c3028ce042a7fe36499eb8173 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT TABLE_SCHEMA, TABLE_NAME, ROUND((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024 / 1024, 2) AS `Size / GB` | |
| FROM information_schema.TABLES | |
| 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