查询表的大小(mysql)

--所有表的大小

select concat(round(sum(DATA_LENGTH/1024/1024),2),'M')
from information_schema.tables where table_schema='数据库' AND table_name='表名'

--表+索引大小

select concat(round(((sum(DATA_LENGTH)+sum(INDEX_LENGTH))/1024/1024),2),'M') from information_schema.tables
where table_schema='数据库'

posted @ 2017-06-19 16:08  __初  阅读(293)  评论(0编辑  收藏  举报