Skip to content

Snippset: Get the

SELECT
  table_name AS `Table`,
  ROUND(((data_length + index_length) / 1024 / 1024 / 1024), 2) AS `Size_GB`
FROM information_schema.tables
WHERE table_schema = 'basement'
ORDER BY Size_GB DESC