詳見:http://blog.yemou.net/article/query/info/tytfjhfascvhzxcyt101sql
1. like %keyword 索引失效,使用全表掃描。但能夠經過翻轉函數+like前模糊查詢+創建翻轉函數索引=走翻轉函數索引,不走全表掃描。函數
2. like keyword% 索引有效。.net
3. like %keyword% 索引失效,也沒法使用反向索引。blog
====================================================================索引
1. 使用下面的函數來進行模糊查詢,若是出現的位置〉0,表示包含該字符串。字符串
查詢效率比like要高。get
若是: table.field like ‘%AAA%’ 能夠改成 locate (‘AAA’ , table.field) > 0io
LOCATE(substr,str)table
POSITION(substr IN str)效率
返回子串substr在字符串str第一個出現的位置,若是substr不是在str裏面,返回0。
使用instr
select count(*) from table t where instr(t.column,’xx’)> 0
這種查詢效果很好,速度很快。
2. 查詢%xx的記錄
select count(c.c_ply_no) as COUNT
from Policy_Data_All c, Item_Data_All i
where c.c_ply_no = i.c_ply_no
and i.C_LCN_NO like ’%245′
在執行的時候,執行計劃顯示,消耗值,io值,cpu值均很是大,緣由是like後面前模糊查詢致使索引失效,進行全表掃描
解決方法:這種只有前模糊的sql能夠改造以下寫法
select count(c.c_ply_no) as COUNT
from Policy_Data_All c, Item_Data_All i
where c.c_ply_no = i.c_ply_no
and reverse(i.C_LCN_NO) like reverse(‘%245′)
使用翻轉函數+like前模糊查詢+創建翻轉函數索引=走翻轉函數索引,不走全掃描。有效下降消耗值,io值,cpu值這三個指標,尤爲是io值的下降。