首页 > 数据库技术 > 详细

mysql-查看单表数据容量

时间:2020-06-14 21:45:27      阅读:51      评论:0      收藏:0      [点我收藏+]

SELECT table_schema as ‘数据库‘,
table_name AS ‘表‘,
round(((data_length) / 1024 / 1024), 2) ‘数据量大小(MB)‘,
round(((index_length) / 1024 / 1024), 2) ‘索引量(MB)‘
FROM information_schema.TABLES
where table_schema = ‘yqn_message‘
ORDER BY (data_length)
DESC;

mysql-查看单表数据容量

原文:https://www.cnblogs.com/mojiruo/p/13127008.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!