sys_connect_by_path+regexp_substr樹狀結構,並用正則表達式拆分

依葫蘆畫瓢git

假若有一張表正則表達式


是  部門           子ID   父ID oracle


一級部門              1    ide


二級部門             2      1函數


三級部門              3       2spa


四級部門              4       3code



個人想法是將部門錶轉成以下類型regexp


一級部門ID   二級部門ID   三級部門ID  四級部門ID  orm

select s.deptname,
       s.deptcode,
       s.pk_deptdoc,
       sys_connect_by_path(s.pk_deptdoc, '/') aa,
       level,
       sys_connect_by_path(s.deptcode, '/') bb,
     --  case when s.deptcode like '99%' then
    --  rtrim(regexp_substr(sys_connect_by_path(s.pk_deptdoc,'/')||'/','.*?'||'/',1,1),'/')
      -- as hahaha1,
      rtrim(regexp_substr(sys_connect_by_path(s.pk_deptdoc,'/')||'/','.*?'||'/',1,2),'/')
       as hahaha1,
      rtrim(regexp_substr(sys_connect_by_path(s.pk_deptdoc,'/')||'/','.*?'||'/',1,3),'/')
       as hahaha2,
       rtrim(regexp_substr(sys_connect_by_path(s.pk_deptdoc,'/')||'/','.*?'||'/',1,4),'/')
       as hahaha3,
       rtrim(regexp_substr(sys_connect_by_path(s.pk_deptdoc,'/')||'/','.*?'||'/',1,5),'/')
       as hahaha4
     -- end
  from rlzy.tcl_dept s
  where s.deptcode like '99%'
  and (level not in (1,2,3))
 start with s.pk_fathedept = '                    '
connect by prior s.pk_deptdoc = s.pk_fathedept
 order siblings by s.deptcodeci

 

-------

轉個正則表達式的文章,之後詳細研究下


Oracle 終於在10g中加入了對正則表達式的支持,下面就來了解一下吧!

匹配字符:

字符

功能

^

標記行的開始

$

標記行的結束

= =

匹配字符族,如:[=a=] 可匹配字符a、â、ã、ä、å等

.

匹配任何字符(除了NULL)

[:alnum:]

匹配任何字母和數字

[:alpha:]

匹配任何字母

[:blank:]

匹配空格

[:cntrl:]

匹配任何控制字符(在ASCII碼錶中不可打印的字符,如ESC鍵)

[:digit:]

任何數字

[:graph:]

任何 標點符號、大小寫字母以及數字

[:lower:]

任何小寫字母

[:print:]

任何可打印的字符

[:punct:]

任何標點符號,如,.+-=等

[:space:]

任何空白字符,如回車、換行、製表等

[:upper:]

任何大寫字母

[:xdigit:]

任何十六進制數字,即0-9A-F

|

分隔符

()

子表達式,可做爲量詞或向後引用的前段

[char]

匹配括號中的任何字符,[^char]表示除開括號中字符後的任何字符
 
量詞字符:

字符

功能

*

匹配0次或屢次

?

匹配0次或1次

+

匹配1次或屢次

{m}

匹配m次

{m,}

匹配至少m次

{m,n}

匹配至少m次,最多n次

\n

引用第n個匹配

匹配選項: 

字符

功能

c

匹配時區分大小寫

i

匹配時不區分大小寫

m

源字符串爲多行匹配

n

.可匹配任何換行符

函數:
一、REGEXP_LIKE
    是LIKE語句的正則表達式版本
    語法:REGEXP_LIKE(源字符串, 匹配表達式[,匹配選項])
    例子:
     SELECT product_name FROM oe.product_information WHERE regexp_like (product_name, 'SS[PS]/[VS]');
    SS[PS]/[VS]匹配:SSP / V 、SSP / S 、 SSS / V 、 SSS / S 

二、REGEXP_INSTR
    返回源字符串中首次匹配正則表達式的起始位置
    語法:REGEXP_INSTR(srcstr, pattern [, position [, occurrence
               [, return_option [, match_option]]]])
            srcstr:源字符串
            pattern:正則表達式
            position:搜索開始位置
            occurrence:返回第幾個匹配項
            return_option:返回選項,0表示開始位置,1表示返回匹配的結束位置
            match_option:匹配選項
    例子:
    SELECT REGEXP_INSTR('500 Oracle Pkwy, Redwood Shores, CA', '[o][[:alpha:]]{3}', 1, 1, 0, 'i') RESULT FROM dual; --返回5
 
    SELECT REGEXP_INSTR('500 Oracle Pkwy, Redwood Shores, CA', '[o][[:alpha:]]{3}', 1, 1, 1, 'i') RESULT FROM dual; --返回9
 
    SELECT REGEXP_INSTR('500 Oracle Pkwy, Redwood Shores, CA', '[o][[:alpha:]]{3}', 1, 2, 0, 'i') RESULT FROM dual; --返回28
 

    SELECT REGEXP_INSTR('500 Oracle Pkwy, Redwood Shores, CA', '[o][[:alpha:]]{3}', 1, 2, 1, 'i') RESULT FROM dual; --返回32

    
    --返回try或trying或tried或tries的位置
    SELECT regexp_instr('We are trying to make the subject easier.',
                      'tr(y(ing)?|(ied)|(ies))') resultnum
    FROM dual;
 
三、REGEXP_SUBSTR
    返回源串中匹配正則表達式的子字符串
    語法:SUBSTR(srcstr, pattern [, position 
                [, occurrence [, match_option]]]) 
            srcstr:源字符串
            pattern:正則表達式
            position:搜索的開始位置
            occurrence:返回第幾個匹配的字符串
            match_option:匹配選項
    例子:
    --返回 , Redwood Shores,
    SELECT regexp_substr('500 Oracle Parkway, Redwood Shores, CA', ',[^,]+,') RESULT
  FROM dual;
    
    --返回 http://www.oracle.com/
    SELECT regexp_substr('Go to http://www.oracle.com/products and click on database',
                     'http://([[:alnum:]]+\.?){3,4}/?') RESULT
  FROM dual;
    
    --匹配try或trying或tried或tries
    SELECT regexp_substr('We are trying to make the subject easier.',
                     'tr(y(ing)?|(ied)|(ies))')
  FROM dual;
    
    --返回sidval
    SELECT regexp_substr( 'system/pwd@orabase:1521:sidval', '[^:]+', 1, 3) RESULT FROM dual;
 
    --返回Three
    SELECT regexp_substr('One|Two|Three|Four|Five', '[^|]+', 1, 3) FROM dual;

 
四、REGEXP_REPLACE
    用執行字符串替換源文本中與正則表達式匹配的字符串
    語法:REGEXP_REPLACE(srcstr, pattern [,replacestr [, position
                 [, occurrence [, match_option]]]])

            srcstr:源字符串
            pattern:正則表達式
            replacestr:新的字符串
            position:搜索起始位置
            occurrence:第幾個匹配項
            match_option:匹配選項
    例子:
    --返回George Mc Govern

    SELECT regexp_replace('George McGovern', '([[:lower:]])([[:upper:]])', '\1 \2') city


  FROM dual;

相關文章
相關標籤/搜索