正如我們已經檢查了MySQL數據庫的大小一樣,我們也可以檢查特定數據庫中表的大小。可以按如下方式完成 –
mysql> SELECT -> table_name AS "Table", -> round(((data_length + index_length) / 1024 / 1024), 2) as SIZE -> FROM information_schema.TABLES -> WHERE table_schema = "SAMPLE" -> ORDER BY SIZE; +-------------+-------+ | Table | SIZE | +-------------+-------+ | employee | 0.02 | | student | 0.02 | | new_student | 0.02 | +-------------+-------+ 3 rows in set (0.00 sec)
登錄后復制
這里的輸出給出了示例數據庫中三個表的大小。
以上就是如何檢查特定 MySQL 數據庫中表的大小?的詳細內容,更多請關注www.92cms.cn其它相關文章!