数据的对象包括表,视图,触发器,等等(查看统计信息的必须进入information_schema 数据库)
举例查看表相关的信息,步骤如下
1、使用information_schema 数据库
use information_schema;
2、查询所有数据的大小(MB):
select concat(round(sum(data_length/1024/1024),2),'MB') as data_size from tables;
3、查看指定数据库(schema)的大小(MB):
select concat(round(sum(data_length/1024/1024),2),'MB') as DB_size from tables where table_schema='ehr';
4、查看指定数据库的指定表(table)的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as table_size from tables where table_schema='ehr' and table_name='ehr_age';
当然了,比逐条SQL查看统计信息更厉害的就是现在的UI界面,有单,实际的东西还是SQL语句
时间: 2024-11-10 11:19:12