首页 > 数据库技术 > 详细

mysql 数据库,表存储 大小

时间:2016-08-30 13:27:30      阅读:377      评论:0      收藏:0      [点我收藏+]

use information_schema;

-- 查询一个数据库存储大小

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

-- 查询一个表存储大小

select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘database nane‘ and table_name=‘saleorder‘; 0.23MB/505

select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘database nane‘ and table_name=‘productset‘; 0.08MB/134

select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘database nane‘ and table_name=‘product‘; 0.19MB/487

select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘database nane‘ and table_name=‘productattribute‘; 0.11MB/711

select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘database nane‘ and table_name=‘userpictures‘; 0.02MB/30

mysql 数据库,表存储 大小

原文:http://www.cnblogs.com/youlixishi/p/5821609.html

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