美文网首页
MySQL数据和索引占用空间查询

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

作者: 最怕的其实是孤单 | 来源:发表于2020-09-10 11:04 被阅读0次

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

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

    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语句

    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;
    

    赵小胖个人博客:https://zc.happyloves.cn:4443/wordpress/

    相关文章

      网友评论

          本文标题:MySQL数据和索引占用空间查询

          本文链接:https://www.haomeiwen.com/subject/vejqsktx.html