MySql教程

Mysql查询数据容量

本文主要是介绍Mysql查询数据容量,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

查询Mysql数据容量

select
table_schema as '数据库',
sum(table_rows) as '记录数',
sum(truncate(data_length/1024/1024, 2)) as '数据容量(MB)',
sum(truncate(index_length/1024/1024, 2)) as '索引容量(MB)'
from information_schema.tables
group by table_schema
order by sum(data_length) desc, sum(index_length) desc;

 

这篇关于Mysql查询数据容量的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!