I'm able to match the first repeated keyword in json string using INSTR(json_string,'keyword') but trying to figure out how to match 3rd repeated keyword occuring in that json document?
Appreciate if someone can give me a clue here?
Thanks, N
I'm able to match the first repeated keyword in json string using INSTR(json_string,'keyword') but trying to figure out how to match 3rd repeated keyword occuring in that json document?
Appreciate if someone can give me a clue here?
Thanks, N
Copyright © 2021 Jogjafile Inc.
You can pass the occurence to the
INSTRfunction:INSTR(string , substring [, start_position [, occurrence]])Take a look at this example:
dbfiddle