Hi,
I need to replace if any word (from the list of words) is occoured in the given string, to null.
I have tried the following:
SELECT REGEXP_REPLACE(FIELD_NAME, '
and', '') AS RX_REPLACE FROM SAMPLE_TABLE;
But it not working as expected.
Your help is really appreciated on this.