MySQL 数据大小查询方法
首先,进入 MySQL monitor
mysql -u用户名 -p密码
其次,进入 information_schema 数据库
USE information_schema;
查询数据大小
- 查询所有数据大小
SELECT CONCAT(ROUND(SUM(data_length/1024),2),'KB') AS data FROM tables;
- 查询指定数据库数据大小
SELECT CONCAT(ROUND(SUM(data_length/1024),2),'KB') AS data FROM tables WHERE table_schema='数据库名';
- 查询指定数据库中指定表的数据大小
SELECT CONCAT(ROUND(SUM(data_length/1024),2),'KB') AS data FROM tables WHERE table_schema='数据库名' AND table_name='数据表名';
相关推荐
emmm00 2020-11-17
王艺强 2020-11-17
aydh 2020-11-12
世樹 2020-11-11
zry 2020-11-11
URML 2020-11-11
spurity 2020-11-10
yifangs 2020-10-13
Andrea0 2020-09-18
Ida 2020-09-16
ltd00 2020-09-12
tufeiax 2020-09-03
xjd0 2020-09-10
greatboylc 2020-09-10
adsadadaddadasda 2020-09-08
疯狂老司机 2020-09-08
CoderToy 2020-11-16
ribavnu 2020-11-16
bianruifeng 2020-11-16