oracle like最佳化

來源:互聯網
上載者:User

查詢%xx%的記錄

1.使用instr
select count(*) from table t where instr(t.column,'xx')> 0
這種查詢效果很好,速度很快

 

查詢%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')

 

 Item_Data_All 表的C_LCN_NO欄位進行前模糊比對的情況都可以這樣處理。例如這段:

select *

  from (select c.c_ply_no as c67_0_,

               c.c_insrnt_cnm as c68_1432_0_,

               i.C_LCN_NO as C83_1432_0_,

               TO_CHAR(c.T_INSRNC_BGN_TM, 'yyyy-mm-dd') as T84_1432_0_,

               c.c_edr_type as c85_1432_0_,

               c.C_prod_no as C86_1432_0_,

               c.C_INTER_CDE as CInterCde1432_0_

          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('%434')

         order by c.c_ply_no DESC)

使用翻轉函數+like前模糊查詢+建立翻轉函數索引=走翻轉函數索引,不走全掃描。有效降低消耗值,io值,cpu值這三個指標,尤其是io值的降低。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.