共计 1213 个字符,预计需要花费 4 分钟才能阅读完成。
自动写代码机器人,免费开通
如何查看 MySQL 数据库表容量大小?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面丸趣 TV 小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
1. 查看所有数据库容量大小
select
table_schema as 数据库 ,
sum(table_rows) as 记录数 ,
sum(truncate(data_length/1024/1024, 2)) as 数据容量 (MB) ,
sum(truncate(index_length/1024/1024, 2)) as 索引容量 (MB)
from information_schema.tables
group by table_schema
order by sum(data_length) desc, sum(index_length) desc;
2. 查看所有数据库各表容量大小
select
table_schema as 数据库 ,
table_name as 表名 ,
table_rows as 记录数 ,
truncate(data_length/1024/1024, 2) as 数据容量 (MB) ,
truncate(index_length/1024/1024, 2) as 索引容量 (MB)
from information_schema.tables
order by data_length desc, index_length desc;
3. 查看指定数据库容量大小
例:查看 mysql 库容量大小
select
table_schema as 数据库 ,
sum(table_rows) as 记录数 ,
sum(truncate(data_length/1024/1024, 2)) as 数据容量 (MB) ,
sum(truncate(index_length/1024/1024, 2)) as 索引容量 (MB)
from information_schema.tables
where table_schema= mysql
4. 查看指定数据库各表容量大小
例:查看 mysql 库各表容量大小
select
table_schema as 数据库 ,
table_name as 表名 ,
table_rows as 记录数 ,
truncate(data_length/1024/1024, 2) as 数据容量 (MB) ,
truncate(index_length/1024/1024, 2) as 索引容量 (MB)
from information_schema.tables
where table_schema= mysql
order by data_length desc, index_length desc;
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注丸趣 TV 行业资讯频道,感谢您对丸趣 TV 的支持。
向 AI 问一下细节正文完