MySQL 如何检查特定MySQL数据库中表的大小?
和检查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)
这个输出结果给出了 Sample 数据库中三个表的大小。
阅读更多:MySQL 教程