在PL/SQL中,Oracle INSTR()函數用于查找一個字符串在另一個字符串中的位置。它的語法如下:
INSTR(string1, string2, [start_position], [occurrence])
其中,string1是要搜索的字符串,string2是要查找的子字符串,start_position是開始查找的位置(可選參數,默認為1),occurrence是要查找的子字符串的第幾次出現(可選參數,默認為1)。
示例:
DECLARE
position NUMBER;
BEGIN
position := INSTR('Oracle Corporation', 'Corporation');
DBMS_OUTPUT.PUT_LINE('Corporation 在字符串中的位置為:' || position);
END;
在上面的示例中,INSTR()函數會查找’Oracle Corporation’中’Corporation’子字符串的位置并返回結果。