美文网首页
Mysql数据库占用空间查询

Mysql数据库占用空间查询

作者: TechLogs | 来源:发表于2020-04-30 12:21 被阅读0次
  • 切换到use information_schema
use information_schema;
  • 所有数据库的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data_size from tables;
  • 指定数据库的大小:
select concat(round(sum(data_length/1024/1024),2),'MB') as data_size from tables where table_schema='my_db1';
  • 定数据库的某个表的大小
select concat(round(sum(data_length/1024/1024),2),'MB') as data_size from tables where table_schema='my_db1' and table_name='user_info';

相关文章

网友评论

      本文标题:Mysql数据库占用空间查询

      本文链接:https://www.haomeiwen.com/subject/ordzwhtx.html