mysql查询数据库各个表的内存大小
解决方法:
执行以下sql即可,其中table_schema就是数据库名
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')as data,table_name
from information_schema.TABLES where table_schema='数据库名' group by table_name
mysql查询数据库各个表的内存大小
解决方法:
执行以下sql即可,其中table_schema就是数据库名
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')as data,table_name
from information_schema.TABLES where table_schema='数据库名' group by table_name
有建议,请留言!