在数据库 information_schema 中进行查询;
table_schema 要查询的数据库;
table_schema 要查询数据库中的表名字;
以下sql 是查询 sefldb 库中 各个表的 占用内存大小; 以下sql可以在不需要打开information_schema 进行执行
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')as data,table_name
from information_schema.TABLES where table_schema='does' group by table_name