作者:海之蓝水之清清2011 | 来源:互联网 | 2020-10-02 03:49
mysql查询数据库的大小的方法:1、查询整个库的大小,代码为【selectconcat(round(sum(DATA_LENGTH10241024),2),MB)】;2、查询某个库的大小,代码为【frominformati】。
mysql查询数据库的大小的方法:1、查询整个库的大小,代码为【select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')】;2、查询某个库的大小,代码为【from informati】。
2、查询mysql数据库,某个库的大小;
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data
from information_schema.TABLES
where table_schema = 'testdb'
3、查看库中某个表的大小;
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data
from information_schema.TABLES
where table_schema = 'testdb'
and table_name = 'test_a';
4、查看mysql库中,test开头的表,所有存储大小;
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data
from information_schema.TABLES
where table_schema = 'testdb'
and table_name like 'test%';
以上就是mysql查询数据库的大小的详细内容,更多请关注 第一PHP社区 其它相关文章!