数据库分析工具explain

1.id:查询语句的编号

2.select_type:查询类型,有三种,simple简单查询,primary,subquery等

3.table:查询的表

4.type:查询性能,system > const > eq_ref > ref > range > index > ALL

system:系统表,少量数据,往往不需要进行磁盘IO const:常量连接 eq_ref:主键索引(primary key)或者非空唯一索引(unique not null)等值扫描 ref:非主键非唯一索引等值扫描 range:范围扫描 index:索引树扫描 * ALL:全表扫描(full table scan)

5.possible_key:推荐走的索引

6.key:实际走的索引

7.key_len:索引里使用的字节数

8.ref

9.rows:扫描的行数

你可能感兴趣的:(数据库)