mysql表占用空间
2016-12-27 本文已影响0人
金色的清晨
mysql> use information_schema;
mysql> select data_length, index_length from tables where table_schema = 'mysql' and table_name = "user";
+-------------+--------------+
| data_length | index_length |
+-------------+--------------+
| 632 | 2048 |
+-------------+--------------+
1 row in set (0.00 sec)