程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle查詢不含括號及不含指定字符的方法,oracle不含

oracle查詢不含括號及不含指定字符的方法,oracle不含

編輯:Oracle教程

oracle查詢不含括號及不含指定字符的方法,oracle不含


oracle查詢不含括號不含指定字符的記錄方法如下:

 with tmp_t as(
 select 1 as id,'測試4321_CS' as name from dual union all
 select 2,'測試 1200(測試版)' from dual union all
 select 3,'測試123(測試版)' from dual union all
 select 4,'測試 1212(D2)' from dual union all
 select 5,'測試 1212(D2)測試版' from dual union all
 select 6,'測試 123' from dual)
 select *
  from tmp_t
 where instr(name, '_CS') = 0
  and regexp_instr(name, '(.*)') = 0
  and regexp_instr(name, '\(.*\)') = 0

結果為:

其中regexp_instr為Oracle支持的正則表達式函數,其功能與instr相似。此處匹配了含有括號()和()的記錄。




  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved