I want to replace ALL ', with '|| .However, I only replace ', that show up after the very first word begin (case insensitive). We might have multiple BEGIN, but once I meet the word begin for the first time, I want to replace all occurrences AFTER begin.
Here is my code that replaces ALL without exception:
regexp_replace(column_name, ''',', '''||', 1, 0, 'i');
Thanks