ORACLE數據庫兩個字符串比較

Oracle數據庫的兩個字段值爲逗號分割的字符串,例如:字段A值爲“1,2,3,5”,字段B爲“2”。
想獲取兩個字段的交集(相同值)2,獲取兩個字段的差集(差異值)1,3,5。

一、最終實現的sql語句

1、獲取交集(相同值):

    select regexp_substr(id, '[^,]+', 1, rownum) id
    from (select '1,2,3,5' id from dual)
    connect by rownum <= length(regexp_replace(id, '[^,]+')) +1
    intersect -- 取交集
    select regexp_substr(id, '[^,]+', 1, rownum) id
    from (select '2' id from dual)
    connect by rownum <= length(regexp_replace(id, '[^,]+')) +1;
    /*結果:
    2
    */

2、獲取差集(差異值):

    select regexp_substr(id, '[^,]+', 1, rownum) id
    from (select '1,2,3,5' id from dual)
    connect by rownum <= length(regexp_replace(id, '[^,]+')) +1
    minus --取差集
    select regexp_substr(id, '[^,]+', 1, rownum) id
    from (select '2' id from dual)
    connect by rownum <= length(regexp_replace(id, '[^,]+')) +1;
    /*結果:
    1
    3
    5
    */

 

二、實現過程用到的函數用法說明

1、regexp_substr
正則表達式分割字符串,函數格式如下:

    function regexp_substr(strstr, pattern [,position] [,occurrence] [,modifier] [subexpression])
    __srcstr:需要進行正則處理的字符串
    __pattern:進行匹配的正則表達式
    __position:可選參數,表示起始位置,從第幾個字符開始正則表達式匹配(默認爲1)
    __occurrence:可選參數,標識第幾個匹配組,默認爲1
    __modifier:可選參數,表示模式('i'不區分大小寫進行檢索;'c'區分大小寫進行檢索。默認爲'c'。)

使用例子:

    select
    regexp_substr('1,2,3,5','[^,]+') AS t1,
    regexp_substr('1,2,3,5','[^,]+',1,2) AS t2,
    regexp_substr('1,2,3,5','[^,]+',1,3) AS t3,
    regexp_substr('1,2,3,5','[^,]+',1,4) AS t4,
    regexp_substr('1,2,3,5','[^,]+',2) AS t5,
    regexp_substr('1,2,3,5','[^,]+',2,1) AS t6,
    regexp_substr('1,2,3,5','[^,]+',2,2) AS t7
    from dual;
    /*結果:
    1    2    3    5    2    2    3
    */

2、regexp_replace

通過正則表達式來進行匹配替換,函數格式如下:

    function regexp_substr(srcstr, pattern [,replacestr] [,position] [,occurrence] [,modifier])
    __srcstr:需要進行正則處理的字符串
    __pattern:進行匹配的正則表達式
    __replacestr:可選參數,替換的字符串,默認爲空字符串
    __position:可選參數,表示起始位置,從第幾個字符開始正則表達式匹配(默認爲1)
    __occurrence:可選參數,標識第幾個匹配組,默認爲1
    __modifier:可選參數,表示模式('i'不區分大小寫進行檢索;'c'區分大小寫進行檢索。默認爲'c'。)

使用例子:

    select
    regexp_replace('1,2,3,5','5','4') t1,
    regexp_replace('1,2,3,5','2|3',4) t2,
    regexp_replace('1,2,3,5','[^,]+') t3,
    regexp_replace('1,2,3,5','[^,]+','') t4,
    regexp_replace('1,2,3,5','[^,]+','*') t5
    from dual;
    /*結果:
    1,2,3,4    1,4,4,5    ,,,    ,,,    *,*,*,*
    */

3、connect by
(1)connect by單獨用,返回多行結果

    select rownum from dual connect by rownum < 5;
    /*結果:
    1
    2
    3
    4
    */

(2)一般通過start with . . . connect by . . .子句來實現SQL的層次查詢

    select
    id,
    name,
    sys_connect_by_path(id,'\') idpath,
    sys_connect_by_path(name, '\') namepath
    from (
    select 1 id, '廣東' name, 0 pid from dual
    union
    select 2 id, '廣州' name , 1 pid from dual
    union
    select 3 id, '深圳' name , 1 pid from dual
    )
    start with pid = 0
    connect by prior id = pid;
    /*結果:
    1    廣東    \1    \廣東
    2    廣州    \1\2    \廣東\廣州
    3    深圳    \1\3    \廣東\深圳
    */

三、總結

由上面函數用法,可知下面語句可以把字符串“1,2,3,5”轉換爲4行記錄

    select regexp_substr(id, '[^,]+', 1, rownum) id
    from (select '1,2,3,5' id from dual)
    connect by rownum <= length(regexp_replace(id, '[^,]+')) +1

然後在2個結果中使用集合運算符(UNION/UNION ALL 並集,INTERSECT 交集,MINUS 差集)進行最終處理。
————————————————
版權聲明:本文爲CSDN博主「gdjlc」的原創文章,遵循CC 4.0 BY-SA版權協議,轉載請附上原文出處鏈接及本聲明。
原文鏈接:https://blog.csdn.net/gdjlc/article/details/102695179

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章