Mysql查看数据库表容量大小

时间:2020-10-29 09:45:44   收藏:0   阅读:27

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;

  技术图片

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!