数据库索引【索引失效】

以下情况不走索引:

  • 通配符在搜索词首出现时,oracle不能使用索引:
select * from student where name like '%xiaoyao';
  • 在索引列上使用not,oracle碰到not会停止使用索引,而采用全表扫描:

select * from student where not (score=100);

select * from student where score <> 100;

select * from student where score != 100;

select * from student where score not in (80,90,100);

--not exist也不走索引
  • 当数据类型是字符串类型的时候,如果条件数据没有被引号引起来,索引失效 
select * from student where dept_id = 1

--应该使用:
select * from student where dept_id = '1'
  • 当使用or的情况下,如果不是每一列的条件都有索引,索引失效
--student表内name建立了索引,sex没有建索引
select * from student where name = 'zhangsan' or sex = 1
  • 组合索引,不是使用第一列索引,索引失效
--建立组合索引(key1,key2);
select * from key1 = 1;--组合索引有效;
select * from key1 = 1 and key2= 2;--组合索引有效;
select * from key2 = 2;--组合索引失效;不符合最左前缀原则
  • 当全表扫描速度比索引速度快时,数据库会使用全表扫描,此时索引失效
  • 具体看索引有没有失效,可以看sql的执行计划,根据执行计划来分析调优

你可能感兴趣的:(数据库,索引失效,不使用索引,索引)