标签:data sql 数据 where table nbsp 很多 sum cat
网上查了很多资料,最后发现一个可行的,分享如下:
数据库大小查询:
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 = ‘表名称‘;
标签:data sql 数据 where table nbsp 很多 sum cat
原文地址:http://www.cnblogs.com/fan-yuan/p/7522120.html