用SQL命令查看Mysql数据库大小

要想知道每个数据库的大小的话,步骤如下:

  • 进入information_schema 数据库(存放了其他的数据库的信息)
use information_schema;
  • 查询所有数据的大小:
select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables;
  • 查看指定数据库的大小:

    比如查看数据库home的大小

select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home';
  • 查看指定数据库的某个表的大小

    比如查看数据库home中 members 表的大小

select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='home' and table_name='members';

发布者

rockts

喜欢技术,乐于开源! 乐可开源,想改变的也只有世界!

发表评论

电子邮件地址不会被公开。

This site uses Akismet to reduce spam. Learn how your comment data is processed.