MySQL数据和索引占用空间查询

MySQL数据和索引占用空间查询

查询所有数据库占用磁盘空间大小的SQL语句

1
2
3
4
5
6
7
8
9
10
SELECT
table_schema, -- 数据库名称
concat( TRUNCATE ( sum( data_length ) / 1024 / 1024, 2 ), 'MB' ) AS data_size, -- 数据占用空间
concat( TRUNCATE ( sum( index_length ) / 1024 / 1024, 2 ), 'MB' ) AS index_size -- 索引占用空间
FROM
information_schema.TABLES
GROUP BY
table_schema
ORDER BY
sum( data_length ) DESC;

查询单个库中所有表磁盘占用大小的SQL语句

1
2
3
4
5
6
7
8
9
10
SELECT
table_name, -- 表名称
concat( TRUNCATE ( data_length / 1024 / 1024, 2 ), 'MB' ) AS data_size, -- 数据占用空间
concat( TRUNCATE ( index_length / 1024 / 1024, 2 ), 'MB' ) AS index_size -- 索引占用空间
FROM
information_schema.TABLES
WHERE
table_schema = '数据库名称'
ORDER BY
data_length DESC;

MySQL数据和索引占用空间查询
https://happyloves.cn/20221128/2630fef0426e.html
作者
赵小胖
发布于
2022年11月28日
许可协议