Skip to content

Latest commit

 

History

History
26 lines (13 loc) · 582 Bytes

mysql explain总结.md

File metadata and controls

26 lines (13 loc) · 582 Bytes

Explain 包含字段

id select_type table type possible_keys key key_len ref rows extra

字段解释

1. id
id 相同则执行顺序为由上至下;id的值如果不同,则id值越大优先级越高,越先被执行
2. select_type
主要用来区分是 普通查询 联合查询 子查询 等查询方式