oracle查找字符串中指定字符的位置
INSTR(string, search_string , start_position , nth_appearance)
其中:
-
string是要查找的字符串。 -
search_string是要查找的字符或字符串。 -
start_position是开始查找的位置,默认为1。 -
nth_appearance是要查找的字符或字符串在string中出现的次数,可以省略,默认为1。
INSTR(string, search_string , start_position , nth_appearance)
其中:
string是要查找的字符串。
search_string是要查找的字符或字符串。
start_position是开始查找的位置,默认为1。
nth_appearance是要查找的字符或字符串在string中出现的次数,可以省略,默认为1。