Created
September 25, 2023 21:24
-
-
Save januszm/3f5d644a12c34ff6d6a7f88908ce8d98 to your computer and use it in GitHub Desktop.
Revisions
-
januszm created this gist
Sep 25, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ SELECT TABLE_NAME AS `Table`, ROUND((DATA_LENGTH + INDEX_LENGTH) / 1024 / 1024) AS `Size (MB)` FROM information_schema.TABLES WHERE TABLE_SCHEMA = "mydatabase" ORDER BY (DATA_LENGTH + INDEX_LENGTH) DESC;