避免使用in 和 not in,会导致引擎扫描全部表数据, 如果数据连续,尽量使用 between关键字, 如果是子查询, 可以使用exist关键字, 例如:
-- 不走索引
select * from A where A.id in (select id from B);
-- 走索引
select * from A where exists (select * from B where B.id = A.id);
避免使用or关键字, 会导致数据库引擎放弃索引,进行全表扫描, 例如:
select*from A where A.id =10or A.id =3;-- 优化方式: 可以使用 union关键字代替or关键字select*from A where id =10unionselect*from A where id =3;
避免在where关键字等号左边进行表达式, 函数运算, 会导致数据库引擎扫描全部表数据, 例如:
-- 不走索引, 全表扫描select*from A where score /10=5;-- 走索引select*from A where score =10*5;
当索引列作为查询条件时, 避免使用!=条件符号,会导致引擎扫描全部表数据.
where 条件复合索引需要满足最左匹配原则, 例如:
-- 表A中联合索引<c1, c2, c3>
-- 走索引情况:
select * from A where c1=1 and c2=2 and c3=3;
select * from A where c1=1 and c2=2;
select * from A where c1=1;
-- 不走索引情况
select * from A where c1=1 and c3=3;
select * from A where c2=1 and c3=3;
select * from A where c3=3;
order by要与where条件一致, 这种优化方式同样对于group by, union, distinct有效.
-- 不走age索引
select * from t order by age;
-- 走age索引
select * from t where age > 0 order by age;