查看mysql数据库大小
1、进入information_schema 数据库(存放了其他的数据库的信息)
use information_schema; #一定要先进这个库,才能查询信息
2、查询所有数据的大小:
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;
3、查看指定数据库的大小:
比如查看数据库test的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='test';
4、查看指定数据库的某个表的大小
比如查看数据库test中 members 表的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='test' and table_name='members';
例子:
mysql> use information_schema;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;
+-----------+
| data |
+-----------+
| 658247MB |
+-----------+
1 row in set, 1 warning (2.93 sec)
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。
文章标题:查看mysql数据库大小
本文作者:wangzhirui
发布时间:2019-09-10, 10:42:33
最后更新:2025-02-27, 02:04:04
原始链接:https://wangzhirui.com/2019/09/10/查看mysql数据库大小/转载请保留原文链接及作者。