Oracle的POSITION函數(shù)用于在字符串中查找指定子字符串的位置。該函數(shù)返回子字符串在原始字符串中的位置,如果找不到子字符串,則返回0。
語法: POSITION(substring IN string)
其中,substring為要查找的子字符串,string為要在其中查找子字符串的原始字符串。
示例: SELECT POSITION(‘world’ IN ‘hello world’) as position FROM dual;
輸出結(jié)果為:6
上述示例中,函數(shù)返回了子字符串’world’在原始字符串’hello world’中的位置為6。