I have an expression like so:
Select regexp_replace('Seattle, WA Se', 'Se', 'SE')
I want to replace the 'Se' with 'SE' but don't want to touch the word 'Seattle'. So far, both 'Seattle' and 'Se' get changed to 'SEattle' and 'SE'.
How do I add a condition in the RegExp_Replace expression to find and change on the "stand-alone" 'Se'?
Thanks.