📅  最后修改于: 2022-03-11 15:04:58.299000             🧑  作者: Mango
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;