Skip to content

Instantly share code, notes, and snippets.

@jdaviderb
Created May 9, 2022 00:20
Show Gist options
  • Save jdaviderb/511ea9a9754897f16c739503292ad8f9 to your computer and use it in GitHub Desktop.
Save jdaviderb/511ea9a9754897f16c739503292ad8f9 to your computer and use it in GitHub Desktop.
mysql show databases by size
SELECT table_schema AS "Data Base Name", sum( data_length + index_length ) / 1024 / 1024 AS "Data Base Size in 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