统计MySQL数据库硬盘占用量大小


select 
TABLE_NAME, 
concat(truncate(data_length/1024/1024,2),' MB') as data_size,
concat(truncate(index_length/1024/1024,2),' MB') as index_size
from information_schema.tables 
where TABLE_SCHEMA = '数据库名'
order by data_length desc;
posted @ 2019-05-08 11:27  牛哥聊技术  阅读(2027)  评论(0编辑  收藏  举报