Můžete také použít update ... from
syntaxi a použijte mapovací tabulku. Pokud chcete aktualizovat více než jeden sloupec, je to mnohem zobecnitelnější:
update test as t set
column_a = c.column_a
from (values
('123', 1),
('345', 2)
) as c(column_b, column_a)
where c.column_b = t.column_b;
Můžete přidat libovolný počet sloupců:
update test as t set
column_a = c.column_a,
column_c = c.column_c
from (values
('123', 1, '---'),
('345', 2, '+++')
) as c(column_b, column_a, column_c)
where c.column_b = t.column_b;
ukázka sql houslí