0

我需要找到一种方法来搜索这些行中的所有列:

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

任何有关语法的帮助,不胜感激!

4

1 回答 1

1

根据内容选择时编辑列

你在找这个吗?

UPDATE table
SET 
    column = 
        CASE 
            WHEN substr(column,1,7) = 'Report:' THEN substr(column,8)
            WHEN substr(column,1,5) = 'Print' THEN substr(column, 6)
            ELSE column
        END
WHERE <conditions>
于 2012-09-22T02:45:28.477 回答