在Oracle中,INSTR
函數用于查找一個字符串中的子字符串,并返回其位置。
INSTR
函數的語法如下:
INSTR(string, substring [, start_position [, nth_occurrence]])
參數說明:
string
:要搜索的字符串。
substring
:要查找的子字符串。
start_position
(可選):指定搜索的起始位置,默認為 1。
nth_occurrence
(可選):指定要查找的子字符串的第幾個出現,默認為 1。
返回值:
如果找到子字符串,則返回其在字符串中的位置(從 1 開始計數)。
如果未找到子字符串,則返回 0。
示例用法:
SELECT INSTR('hello world', 'world') FROM dual;
-- 結果:7
SELECT INSTR('hello world', 'or', 5) FROM dual;
-- 結果:8
SELECT INSTR('hello world', 'o', 1, 2) FROM dual;
-- 結果:5
注意:INSTR
函數區分大小寫。如果要進行大小寫不敏感的搜索,可以使用LOWER
函數將字符串轉換為小寫,然后再使用INSTR
函數進行搜索。