失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > MySQL查看数据库表容量大小

MySQL查看数据库表容量大小

时间:2018-10-21 12:39:54

相关推荐

MySQL查看数据库表容量大小

数据库|mysql教程

mysql,data_length

数据库-mysql教程

点餐系统毕设源码,ubuntu授权访问网络,tomcat 反序列执行命令,爬虫查看wifi密码,php二进制安全吗,苹果seo优化lzw

本文介绍MySQL查看数据库表容量大小的命令语句,提供完整查询语句及实例,方便大家学习使用。

js京东源码,vscode控制台程序,ubuntu 14 破密,tomcat共享包设置,爬虫amf应用,php 企业管理系统,鼓楼区专业seo价格,网站模板破解版,较好的网站模板lzw

相关mysql视频教学推荐:《mysql教学》

如何阅读android软件源码,vscode 中键,ubuntu usb手机,使用tomcat,sqlite 大文件,网站如何选择服务器,discuz如何下载插件,django前端页面框架,python 爬虫假死,php培训学什么,seo培训云南,破解网站后台账号密码,斗地主 网页,最新婚纱模板免费下载,仿微信卡券页面 源码,源码 项目及合同管理系统,android 程序源码lzw

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=mysqlorder by data_length desc, index_length desc;

本文讲解了MySQL查看数据库表容量大小,更多相关知识请关注php中文网。

详解PHP封装的一个单例模式Mysql操作类

解读php的PDO连接数据库的相关内容

如何通过php用代码实现递归获取一个数组中指定key的值

如果觉得《MySQL查看数据库表容量大小》对你有帮助,请点赞、收藏,并留下你的观点哦!

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