1. 程式人生 > >Oracle中的substr()函式和INSTR()函式

Oracle中的substr()函式和INSTR()函式

1)substr函式格式   (俗稱:字元擷取函式)

  格式1: substr(string string, int a, int b);

  格式2:substr(string string, int a) ;

解釋:

    格式1:
        1、string 需要擷取的字串 
        2、a 擷取字串的開始位置(注:當a等於0或1時,都是從第一位開始擷取)
        3、b 要擷取的字串的長度

    格式2:
        1、string 需要擷取的字串
        2、a 可以理解為從第a個字元開始擷取後面所有的字串。

2)例項解析

複製程式碼
 1select substr('HelloWorld',0,3) value from dual; //返回結果:Hel,擷取從“H”開始3個字元
 2select substr('HelloWorld',1,3) value from dual; //返回結果:Hel,擷取從“H”開始3個字元
 3、select substr('HelloWorld',2,3) value from dual; //返回結果:ell,擷取從“e”開始3個字元
 4、select substr('HelloWorld',0,100) value from dual; //返回結果:HelloWorld,100雖然超出預處理的字串最長度,但不會影響返回結果,系統按預處理字串最大數量返回。
 5、
select substr('HelloWorld',5,3) value from dual; //返回結果:oWo 6select substr('Hello World',5,3) value from dual; //返回結果:o W (中間的空格也算一個字串,結果是:o空格W) 7、select substr('HelloWorld',-1,3) value from dual; //返回結果:d (從後面倒數第一位開始往後取1個字元,而不是3個。原因:下面紅色 第三個註解) 8、select substr('HelloWorld',-2,3) value from dual; //返回結果:ld (從後面倒數第二位開始往後取2個字元,而不是3個。原因:下面紅色 第三個註解) 9、
select substr('HelloWorld',-3,3) value from dual; //返回結果:rld (從後面倒數第三位開始往後取3個字元) 10select substr('HelloWorld',-4,3) value from dual; //返回結果:orl (從後面倒數第四位開始往後取3個字元)
複製程式碼

    (注:當a等於0或1時,都是從第一位開始擷取(如:1和2)
    (注:假如HelloWorld之間有空格,那麼空格也將算在裡面(如:5和6)
    (注:雖然7、8、9、10擷取的都是3個字元,結果卻不是3 個字元; 只要 |a| ≤ b,取a的個數(如:7、8、9);當 |a| ≥ b時,才取b的個數,由a決定擷取位置(如:9和10)

複製程式碼
11、select substr('HelloWorld',0) value from dual;  //返回結果:HelloWorld,擷取所有字元
12、select substr('HelloWorld',1) value from dual;  //返回結果:HelloWorld,擷取所有字元
13、select substr('HelloWorld',2) value from dual;  //返回結果:elloWorld,擷取從“e”開始之後所有字元
14、select substr('HelloWorld',3) value from dual;  //返回結果:lloWorld,擷取從“l”開始之後所有字元
15、select substr('HelloWorld',-1) value from dual;  //返回結果:d,從最後一個“d”開始 往回擷取1個字元
16、select substr('HelloWorld',-2) value from dual;  //返回結果:ld,從最後一個“d”開始 往回擷取2個字元
17、select substr('HelloWorld',-3) value from dual;  //返回結果:rld,從最後一個“d”開始 往回擷取3個字元 
複製程式碼

    (注:當只有兩個引數時;不管是負幾,都是從最後一個開始 往回擷取(如:15、16、17)

 3)例項截圖:

1、

2、

5、

6、

7、

8、

9、

10、

15、

16、

17、

==========================================================================

1)instr()函式的格式  (俗稱:字元查詢函式)

格式一:instr( string1, string2 )    /   instr(源字串, 目標字串)

格式二:instr( string1, string2 [, start_position [, nth_appearance ] ] )   /   instr(源字串, 目標字串, 起始位置, 匹配序號)

解析:string2 的值要在string1中查詢,是從start_position給出的數值(即:位置)開始在string1檢索,檢索第nth_appearance(幾)次出現string2。

  注:在Oracle/PLSQL中,instr函式返回要擷取的字串在源字串中的位置。只檢索一次,也就是說從字元的開始到字元的結尾就結束。

2)例項

格式一

1 select instr('helloworld','l') from dual; --返回結果:3    預設第一次出現“l”的位置
2 select instr('helloworld','lo') from dual; --返回結果:4    即:在“lo”中,“l”開始出現的位置
3 select instr('helloworld','wo') from dual; --返回結果:6    即“w”開始出現的位置

格式二

複製程式碼
1 select instr('helloworld','l',2,2) from dual;  --返回結果:4    也就是說:在"helloworld"的第2(e)號位置開始,查詢第二次出現的“l”的位置
2 select instr('helloworld','l',3,2) from dual;  --返回結果:4    也就是說:在"helloworld"的第3(l)號位置開始,查詢第二次出現的“l”的位置
3 select instr('helloworld','l',4,2) from dual;  --返回結果:9    也就是說:在"helloworld"的第4(l)號位置開始,查詢第二次出現的“l”的位置
4 select instr('helloworld','l',-1,1) from dual;  --返回結果:9    也就是說:在"helloworld"的倒數第1(d)號位置開始,往回查詢第一次出現的“l”的位置
5 select instr('helloworld','l',-2,2) from dual;  --返回結果:4    也就是說:在"helloworld"的倒數第1(d)號位置開始,往回查詢第二次出現的“l”的位置
6 select instr('helloworld','l',2,3) from dual;  --返回結果:9    也就是說:在"helloworld"的第2(e)號位置開始,查詢第三次出現的“l”的位置
7 select instr('helloworld','l',-2,3) from dual; --返回結果:3    也就是說:在"helloworld"的倒數第2(l)號位置開始,往回查詢第三次出現的“l”的位置
複製程式碼

 

注:MySQL中的模糊查詢 like 和 Oracle中的 instr() 函式有同樣的查詢效果; 如下所示:

MySQL: select * from tableName where name like '%helloworld%';
Oracle:select * from tableName where instr(name,'helloworld')>0;  --這兩條語句的效果是一樣的

 

3)例項截圖

1、

2、

3、

4、

5、

6、

7、

8、

9、

 

一、instr函式的用法
在Oracle中可以使用instr函式對某個字串進行判斷,判斷其是否含有指定的字元。在一個字串中查詢指定的字元,返回被查詢到的指定的字元的位置。
語法:

instr(sourceString,destString,start,appearPosition)
instr('源字串' , '目標字串' ,'開始位置','第幾次出現')
1
2
其中sourceString代表源字串; destString代表要從源字串中查詢的子串;
start代表查詢的開始位置,這個引數可選的,預設為1;
appearPosition代表想從源字元中查找出第幾次出現的destString,這個引數也是可選的, 預設為1
如果start的值為負數,則代表從右往左進行查詢,但是位置資料仍然從左向右計算。
返回值為:查詢到的字串的位置。如果沒有查詢到,返回0。
二、示例:
在abcd中查詢a的位置,從第一個字母開始查,查詢第一次出現時的位置

select instr('abcd','a',1,1) from dual; ---1
select instr('abcd','c',1,1) from dual; ---3
select instr('abcd','e',1,1) from dual; ---0
1
2
3
該函式可以用於模糊查詢以及判斷包含關係:
例如:

select code,name,dept,occupation from staff where instr(code, '001')> 0;
1
等同於

select code, name, dept, occupation from staff where code like '%001%' ;
1
select ccn,mas_loc from mas_loc where instr('FH,FHH,FHM',ccn)>0;
1
等同於

select ccn,mas_loc from mas_loc where ccn in ('FH','FHH','FHM');
1