时间:2021-07-01 10:21:17 帮助过:74人阅读
网上查了很多资料,最后发现一个可行的,分享如下:
数据库大小查询:
select concat(round(sum(DATA_LENGTH/1024/1024),2),‘M‘) from information_schema.TABLES where TABLE_SCHEMA=‘数据库名称‘;
表大小查询:
SELECT concat(round(sum(DATA_LENGTH/1024/1024),2),‘M‘) FROM information_schema.TABLES where TABLE_SCHEMA=‘数据库名称‘ and table_name = ‘表名称‘;
mysql数据库使用sql查询数据库大小及表大小
标签:data sql 数据 where table nbsp 很多 sum cat