1.为order by字段建立索引
create index ‘表名_字段名’on 表名(field1,field2);
其他:
查看索引
show index from 表名
2.where 条件最先出现的是要排序更多结果的条件 where a>0 and b<0--------经a>0筛选后的结果要少于b<0,此时称最优条件顺序
3.最优条件顺序决定最优索引顺序