首页 > 数据库技术 > 详细

mysql查看数据库单表占用空间大小

时间:2014-03-04 22:38:04      阅读:655      评论:0      收藏:0      [点我收藏+]

 

连上数据库

show databases;
+--------------------+
| Database               |
+--------------------+
| information_schema |
| photos                   |
| test                        |
+--------------------+

use information_schema ;

该库存储了所有数据的具体情况。

这条语句就是查询photos数据库中的albums_index_1表的具体数据大小和索引大小。

SELECT concat(round(sum(data_length/1024/1024),2),‘MB‘) as data_length_MB, concat(round(sum(index_length/1024/1024),2),‘MB‘) as index_length_MB  FROM information_schema.TABLES WHERE TABLE_SCHEMA=‘photos‘ AND TABLE_NAME=‘albums_index_1‘ ;

 

 

备忘。

mysql查看数据库单表占用空间大小,布布扣,bubuko.com

mysql查看数据库单表占用空间大小

原文:http://www.cnblogs.com/gaoj87/p/3579961.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!