I am using
SELECT REPLACE(REPLACE(Status,'O','New'),'C','Closed') as STATUS,
in Oracle SQL Select
The problem is that my table has both: 'C' and 'Closed'
So it is actually replacing 'C' with 'Closed' and replacing 'Closed' with 'Closedlosed'
How do I get it to replace only when entire field matches?