
merge into table a
using
() b on a=b
when matched then
update set k=(case when a=1 and b=2 then 1 else k end),
m=(case when a=2 and b=1 then 2 else m end) where...;
when not matched then

merge into table a
using
() b on a=b
when matched then
update set k=(case when a=1 and b=2 then 1 else k end),
m=(case when a=2 and b=1 then 2 else m end) where...;
when not matched then