U kunt een case
. gebruiken om te bepalen of u een nieuwe waarde toewijst of de oude waarde behoudt.
update <sometable>
set field = case when <condition> then <newvalue> else field end
where <condition>
Voorbeeld:
update questions
set reply = case when @input is not null then @input else reply end
where answer = 42