Hi
I want to remove multiple characters (that are not necessary sequential) in a string.
To remove the character 'a' from a string I use the following:
REPLACE(mystring, 'a', '')
But if I want to remove all 'a's 'b's and 'c's how do I do it?
The following does not work but displays the logic I need:
REPLACE(mystring, 'a' | 'b' | 'c', '')
any ideas