我想知道我的MySQL数据库使用多少空间,以便选择Web主机。我找到了该命令,SHOW TABLE STATUS LIKE 'table_name'
因此当我执行查询时,会得到如下信息:
Name | Rows | Avg. Row Length | Data_Length | Index Length
---------- ---- --------------- ----------- ------------
table_name 400 55 362000 66560
- 数字四舍五入。
那么,该表是否有362000 或400 * 362000 = 144800000字节的数据?索引长度是什么意思?谢谢 !