查看mysql库和表的大小(空间)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看mysql库和表的大小(空间)相关的知识,希望对你有一定的参考价值。
use information_schema;
查询所有数据的大小:
select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables;
查看指定数据库的大小:
select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘DATABASENAME‘;
查看指定数据库的某个表的大小:
select concat(round(sum(data_length/1024/1024),2),‘MB‘) as data from tables where table_schema=‘DATABASENAME‘ and table_name=‘TABLENAME‘;
本文出自 “LinuxTips” 博客,请务必保留此出处http://linuxtips.blog.51cto.com/11213600/1773940
以上是关于查看mysql库和表的大小(空间)的主要内容,如果未能解决你的问题,请参考以下文章