I have a case statement where I am trying to change two values from a field.
CASE
WHEN prod_map.Product_ID1 = 'CR'
THEN REPLACE(REPLACE(cl.trade_day_count, 'ACT','ACTUAL'),cl.trade_day_count,
'ACT+1', 'ACTUAL')
END,
so, when cl.trade_day_count contains the value 'ACT' or 'ACT+1' then change to 'ACTUAL'