查询mysql中一个数据库里各个表所占用空间的大小
select TABLE_NAME,table_rows,data_length+index_length, concat(round((data_length+index_length)/1024/1024,2),'MB') data from information_schema.tables where table_schema='数据库名';
table_schema是数据库名
在...
原创
2019-01-15 11:34:21 ·
293 阅读 ·
0 评论