一文看懂MySQL如何查看數據庫表容量大小
作者:波波說運維
今天主要介紹MySQL查看數據庫表容量大小的幾個方法,僅供參考。下面,我們一起來看。
今天主要介紹MySQL查看數據庫表容量大小的幾個方法,僅供參考。
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;
2. 查看所有數據庫各表容量大小
- 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;
3. 查看指定數據庫容量大小
- 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
- WHERE
- table_schema = 'mysql';
4. 查看指定數據庫各表容量大小
- 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;
責任編輯:趙寧寧
來源:
今日頭條