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 = '库名'
group by TABLE_NAME order by data_length desc;
相关文章
- 02-07mysql查看各表占磁盘空间
- 02-07mysql查看指定数据库各表容量大小
- 02-07如何查看MySQL数据库占多大内存,占用太多内存怎么办?