1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > mysql查看数据库表大小语句_MySQL查看数据库表容量大小的命令语句讲解

mysql查看数据库表大小语句_MySQL查看数据库表容量大小的命令语句讲解

时间:2018-11-27 19:40:52

相关推荐

mysql查看数据库表大小语句_MySQL查看数据库表容量大小的命令语句讲解

MySQL查看数据库表容量大小的命令语句讲解

发布时间:-04-27 14:17:23

来源:亿速云

阅读:180

作者:三月

本文主要给大家介绍MySQL查看数据库表容量大小的命令语句讲解,希望可以给大家补充和更新些知识,如有其它问题需要了解的可以持续在亿速云行业资讯里面关注我的更新文章的。

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.tablesgroup by table_schemaorder 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.tablesorder 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.tableswhere 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.tableswhere table_schema='mysql'order by data_length desc, index_length desc;

本文讲解了如何通过MySQL查看数据库表容量大小,更多相关内容请关注亿速云。

相关推荐:

关于php str_getcsv把字符串解析为数组的使用方法的讲解

优化客户端调用服务端接口减少请求数据容量

mysql order by rand() 效率优化方法

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。