查看“MySQL 查看表大小的几种方法”的源代码
←
MySQL 查看表大小的几种方法
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
=查看指定数据库各表容量大小= <pre>例:查看mysql库各表容量大小 以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; </pre> =查看所有数据库各表容量大小= <pre> 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; </pre> =执行结果= <pre> +--------------------+----------------------------------------------+-----------+------------------+------------------+ | 数据库 | 表名 | 记录数 | 数据容量(MB) | 索引容量(MB) | +--------------------+----------------------------------------------+-----------+------------------+------------------+ | l_cailu_market | t_market_trend_30day | 93109 | 9.54 | 8.54 | | l_cailu_market | t_market_trend_7day | 91539 | 9.54 | 7.54 | | l_cailu_market | t_market_trend_24hour | 51658 | 5.51 | 4.51 | | mysql | help_topic | 513 | 0.46 | 0.01 | | mysql | help_keyword | 538 | 0.10 | 0.01 | | l_cailu_market | t_market_exchange_kline_1day | 0 | 0.01 | 0.01 | | l_cailu_market | t_market_exchange_kline_15min | 0 | 0.01 | 0.01 | | l_cailu_market | t_market_trend_1year | 0 | 0.01 | 0.01 | </pre> =see also= http://blog.linuxchina.net/?p=751 [https://blog.csdn.net/fdipzone/article/details/80144166 MySQL查看数据库表容量大小] [[category:mysql]]
返回至
MySQL 查看表大小的几种方法
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息