The following query returns the string 'This chair is a brown chair'. Both occurrences of the search string 'bag' in the source string were replaced by the string 'chair'.
SELECT OREPLACE('This bag is a brown bag', 'bag', 'chair');
The following query returns the string 'This chair is a brown chair'. Both occurrences of the search string 'bag' in the source string were replaced by the string 'chair'.
SELECT OREPLACE('This bag is a brown bag', 'bag', 'chair');