Skip to content

Instantly share code, notes, and snippets.

View motammem's full-sized avatar

Amin Alizade motammem

  • Software Architect and PHP Developer
  • Alborz, Iran
View GitHub Profile
@motammem
motammem / database table sizes
Created May 9, 2017 09:17
Get database table sizes in mb and desc order
SELECT
table_name AS `Table`,
round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB`
FROM information_schema.TABLES
WHERE table_schema = "__database__"
ORDER BY (data_length + index_length) DESC