索引失效:
1)where 子句中对字段进行 null 值判断
2)where 子句中使用 != 或 <> 操作符
3)where 子句中使用 or 来连接条件
4)in 和 not in 也要慎用
例如:
select id from t where num in(1,2,3)
对于连续的数值,能用 between 就不要用 in 了:
select id from t where num between 1 and 3
很多时候用 exists 代替 in 是一个好的选择:
select num from a where num in(select num from b)
用下面的语句替换:
select num from a where exists(select 1 from b where num=a.num)
5)where 子句中使用 like模糊查询
6)避免在 where 子句中对字段进行表达式操作,这将导致引擎放弃使用索引而进行全表扫描
7)应尽量避免在where子句中对字段进行函数操作,这将导致引擎放弃使用索引而进行全表扫描