使用explain查看mysql查询执行计划

explain语句:

字段解释:

type:
    all(全表扫描)
    ref()
possible_keys:
    预测使用什么列做为索引
key:
    实际使用的key    
ref:
    参考,引用
rows:
  扫描的行数
id:
    扫描的行数
extra:
    使用什么来定位

 

原文地址:https://www.cnblogs.com/fanxuanhui-linux/p/6189492.html