zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

查看当前的数据和索引的总大小

索引数据 查看 大小 当前
2023-09-27 14:26:42 时间
select round(sum(data_length+index_length)/1024/1024)
as total_mb,
round(sum(data_length)/1024/1024) as data_mb,
round(sum(index_length)/1024/1024) as index_mnb
from information_schema.tables;