Dovresti usare insert . . . select
con un case
dichiarazione:
INSERT INTO table(column1, column2)
select (case when *expression* then 'value1' end) as column1,
(case when not *expression* then 'value2' end) as column2;
Tuttavia, sospetto che tu possa davvero volere un update
e non un insert
:
update table
set column1 = (case when *expression* then 'value1' else column1 end),
column2 = (case when not *expression* then 'value2' else column2 end);