索引失效的情況

2021-09-25 17:57:03 字數 1071 閱讀 2341

資料庫索引失效的情況

1:索引列上不能使用表示式和漢書 索引created

select * from a where to_days(current_date)-to_days(created)>=30

select * from a where created < date_add(current_date,interval-30 day);

2:索引列上不能進行算術運算

select * from a where sal*12>25000;

select * from a where sal>2500/12

3:避免在索引列上使用is null 和not null

select * from a where dept_code is not null;

select * from a where dept_code >= 0

4:避免where子句中使用 !=

mysql 只有對一下操作符才使用索引:< , <= , = , > , >= , between

6:避免在where子句中使用or來連線條件否則將導致引擎放棄使用索引而進行全表掃瞄

select * from a where num=10 or num =20

select * from a where num=10 union all select * from a where num=20

7:in 和not in也會導致全表掃瞄

select * from a where num in(1,2,3)

select * from a where between 1 and 3

8:在使用like時,盡量不在開頭使用萬用字元

select * from a where col like 『%中國』

select * from a where col like 『中國%』

9:不要使用型別轉換。如果某個索引列是int型別,而在查詢時候,賦值字元型,使用不聊索引

select * from a where num = 『1』;沒有使用索引

select * from a where num = 1;  使用了索引

索引失效的情況

索引並不是時時都會生效的,比如以下幾種情況,將導致索引失效 如果條件中有or,即使其中有條件帶索引也不會使用 這也是為什麼盡量少用or的原因 注意 要想使用or,又想讓索引生效,只能將or條件中的每個列都加上索引 對於多列索引,不是使用的第一部分,則不會使用索引 like查詢是以 開頭 如果列型別是...

索引失效的情況

對於後端開發工程師來說,熟練掌握資料庫的極有必要的,靈活使用索引也是必須技能。但索引並不是時時都會生效的,以下列舉出索引失效的原因 對索引列進行運算導致索引失效,運算包括 等 使用oracle內部函式導致索引失效.對於這樣情況應當建立基於函式的索引.單獨的 like 百分號在前.單獨引用復合索引裡非...

索引失效的情況

索引並不是時時都會生效的,比如以下幾種情況,將導致索引失效 1 如果條件中有or,即使其中有部分條件帶索引也不會使用 這也是為什麼盡量少用or的原因 例子中 id 無索引 注意 要想使用or,又想讓索引生效,只能將or條件中的每個列都加上索引 2 存在索引列的資料型別 轉換,則用不上索引,比如列型別...