Oracle的INSTR函數是用于在字符串中查找子字符串的位置的函數。它的語法如下:
INSTR(string, substring, position, occurrence)
string:要進行查找的字符串。
substring:要查找的子字符串。
position:可選參數,指定開始查找的位置,默認為1。
occurrence:可選參數,指定要查找的子字符串在字符串中出現的次數,默認為1。
返回值:返回子字符串在字符串中的位置,如果找不到則返回0。
以下是使用INSTR函數的幾個示例:
SELECT INSTR('Hello World', 'World') as position
FROM dual;
結果:7
SELECT INSTR('Hello World Hello', 'Hello', 1, 2) as position
FROM dual;
結果:13
SELECT INSTR('Hello World', 'o', 5) as position
FROM dual;
結果:5
SELECT INSTR('Hello World', 'WORLD', 1, 1, 0) as position
FROM dual;
結果:7
請注意,INSTR函數是根據索引來計算位置的,位置從1開始計數。如果要查找的子字符串不存在,INSTR函數將返回0。