如何获取mysql数据库的大小? 假设目标数据库称为“ v3”。
运行此查询,您可能会找到所需的内容:
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;
该查询来自mysql论坛,那里提供了更全面的说明。