I need to find a way to search all columns along these lines:
select CASE
When substr(column,1,7) = 'Report:' then substr(column,8)
when substr(column,1,5) = 'Print' then substr(column, 6)
else column
end
from table
Any help on syntax and what not would be greatly appreciated!