使用SQL命令查看MYSQL数据库大小

Posted Oops!

tags:

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

mysql>   
mysql> use information_schema ;  /*切换到information_schema数据下*/     
Database changed  
mysql>   
mysql> select concat(round(sum(data_length/1024/1024),2),MB) as data from tables;  /*查询所有数据大小*/     
+----------+  
| data     |  
+----------+  
| 123.68MB |  
+----------+  
1 row in set (0.36 sec)  
  
mysql> select concat(round(sum(data_length/1024/1024),2),MB) as data from tables where table_schema=hrkip;  /*查询数据库名称为“hrkip”的数据大小*/   
+--------+  
| data   |  
+--------+  
| 8.65MB |  
+--------+  
1 row in set (0.00 sec)  
  
mysql> select concat(round(sum(data_length/1024/1024),2),MB) as data from tables where table_schema=hrkip and table_name=jx_lsjl ;  /*查询数据库名称为“hrkip”,表名为“ jx_lsjl”的数据大小*/   
+--------+  
| data   |  
+--------+  
| 6.77MB |  
+--------+  
1 row in set (0.00 sec)  
  

 

备注 :

data_length :存储数据大小

data_length/1024/1024:将字节转换为MB

round(sum(data_length/1024/1024),2):取两位小数

concat(round(sum(data_length/1024/1024),2),‘MB‘) :给计算结果追加单位 “MB”

以上是关于使用SQL命令查看MYSQL数据库大小的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

linux中怎么查看mysql数据库版本

sql查看mysql中各数据库大小

mysql文件sql大容量怎么导入