MySQL 使用 explain + sql 语句
查看 执行计划,该执行计划不一定完全正确但是可以参考。
1、select_type
2、table : 正在访问的表名
3、type
性能:all
< index
< range
< index_merge
< ref_or_null
< ref
< eq_ref
< system/const
性能在 range 之下基本都可以进行调优
4、possible_keys : 可能使用的索引
5、key : 真实使用的
6、key_len : MySQL中使用索引字节长度
7、rows : mysql 预估为了找到所需的行而要读取的行数
8、extra