如何检查特定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)
在这里,此输出给出了示例数据库中三个表的大小 。
以上是 如何检查特定MySQL数据库中表的大小? 的全部内容, 来源链接: utcz.com/z/345327.html