1、查询整个mysql数据库,整个库的大小;单位转换为MB。
select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from information_schema.TABLES
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%'
可以使用这几种方式:
(1)用select database()语句
select database()(2)用show tables语句,查询出来的结果中,第一行为Tables_in_***,这里***就
是当前所在的数据库名称。
show tables(3)用status语句,查询出来的结果中有一行是currrent database:***。这里***就
是当前所在的数据库名称。
status希望可以帮到你。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)