MySQL 之 explain/desc type 字段
MySQL 索引 About 268 wordsexplain 执行效率分析
有上至下效率越来越高
等级 | 解释 |
---|---|
ALL | 全表扫描 |
index | 索引全扫描 |
range | 索引范围扫描,常用语<,<=,>=,between等操作 |
ref | 使用非唯一索引扫描或唯一索引前缀扫描,返回单条记录,常出现在关联查询中 |
eq_ref | 类似ref,区别在于使用的是唯一索引,使用主键的关联查询 |
const/system | 单条记录,系统会把匹配行中的其他列作为常数处理,如主键或唯一索引查询 |
null | MySQL不访问任何表或索引,直接返回结果 |
Views: 2,690 · Posted: 2019-04-04
————        END        ————
Give me a Star, Thanks:)
https://github.com/fendoudebb/LiteNote扫描下方二维码关注公众号和小程序↓↓↓
Loading...