1. 程式人生 > 實用技巧 >索引在什麼情況下失效?

索引在什麼情況下失效?

一、資料索引是幹什麼用的呢?

資料庫索引其實就是為了使查詢資料效率快。

二、資料庫索引有哪些呢?

  1. 聚集索引(主鍵索引):在資料庫裡面,所有行數都會按照主鍵索引進行排序。
  2. 非聚集索引:就是給普通欄位加上索引。
  3. 聯合索引:就是好幾個欄位組成的索引,稱為聯合索引。
key 'idx_age_name_sex' ('age','name','sex')

  聯合索引遵從最左字首原則。

三、索引在那些情況下失效呢?

表student中兩個欄位age,name加了索引

key'idx_age'('age'), key'idx_name'('name')

1.Like這種就是%在前面的不走索引,在後面的走索引(A走索引,B不走索引)

A:select * from student where 'name' like '王%'
B:select * from student where 'name' like '%小'

2.用索引列進行計算的,不走索引(A走索引,B不走索引)

A:select * from student where age = 10+8
B:select * from student where age + 8 = 18

3.對索引列用函數了,不走索引(A不走索引,B走索引)

A:select * from student where  concat('name','') ='王哈哈';
B:
select * from student where name = concat('王哈','');

4. 索引列用了!= 不走索引

select * from student where age != 18

5.索引欄位進行判空查詢時。也就是對索引欄位判斷是否為NULL時

select * from student where name is null

6.隨著表的增長,where條件出來的資料太多,大於15%,使得索引失效

7.避免在where子句中使用or來連線條件,因為如果倆個欄位中有一個沒有索引的話,引擎會放棄索引而產生全表掃描

SELECT id FROM table WHERE num = 0
OR num = 1