SELECT TABLE_NAME AS "Table Name",
table_rows AS "Quant of Rows", ROUND( (
data_length + index_length
) /1024, 2 ) AS "Total Size Kb"
FROM information_schema.TABLES
WHERE information_schema.TABLES.table_schema = 'YOUR SCHEMA NAME/DATABASE NAME HERE'
LIMIT 0 , 30
Você pode obter o nome do esquema na coluna " information_schema " -> tabela SCHEMATA -> " SCHEMA_NAME "
Adicional
Você pode obter o tamanho dos bancos de dados mysql da seguinte maneira.
SELECT table_schema "DB Name",
Round(Sum(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB"
FROM information_schema.tables
GROUP BY table_schema;
Resultado
DB Name | DB Size in MB
mydatabase_wrdp 39.1
information_schema 0.0
Você pode obter detalhes adicionais aqui.