Du kan bruge en case
for at kontrollere, om du tildeler en ny værdi eller beholder den gamle værdi.
update <sometable>
set field = case when <condition> then <newvalue> else field end
where <condition>
Eksempel:
update questions
set reply = case when @input is not null then @input else reply end
where answer = 42