我需要找到一种方法来搜索这些行中的所有列:
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
任何有关语法的帮助,不胜感激!
我需要找到一种方法来搜索这些行中的所有列:
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
任何有关语法的帮助,不胜感激!