Můžete použít case
pro kontrolu, zda přiřadíte novou hodnotu nebo ponecháte starou hodnotu.
update <sometable>
set field = case when <condition> then <newvalue> else field end
where <condition>
Příklad:
update questions
set reply = case when @input is not null then @input else reply end
where answer = 42