怎样查看Mysql数据库大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样查看Mysql数据库大小相关的知识,希望对你有一定的参考价值。

参考技术A 1、进去指定schema
数据库(存放了其他的数据库的信息)
use
information_schema
2、查询所有数据的大小
select
concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')
as
data
from
TABLES
3、查看指定数据库的大小
比如说
数据库apoyl
select
concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')
as
data
from
TABLES
where
table_schema='apoyl';
4、查看指定数据库的表的大小
比如说
数据库apoyl
中apoyl_test表
select
concat(round(sum(DATA_LENGTH/1024/1024),2),'MB')
as
data
from
TABLES
where
table_schema='apoyl'
and
table_name='apoyl_test';
整完了,有兴趣的可以试哈哦!挺使用哈

sql查看mysql中各数据库大小

用SQL命令查看Mysql数据库大小

要想知道每个数据库的大小的话,步骤如下:

1、进入information_schema 数据库(存放了其他的数据库的信息)

use information_schema;

2、查询所有数据的大小:

select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables;

3、查看指定数据库的大小:

比如查看数据库home的大小

select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘home‘;

4、查看指定数据库的某个表的大小

比如查看数据库home中 members 表的大小

select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘home‘ and table_name=‘members‘;

以上是关于怎样查看Mysql数据库大小的主要内容,如果未能解决你的问题,请参考以下文章

怎样查看MySQL是否区分大小写

怎样限制MySQL数据库文件的大小

怎样在MySQL数据库中导出整个数据库

怎样限制MySQL数据库文件的大小?

如何查看mysql数据库中各个表的大小

怎样查看mysql自定义数据库的编码字符集