case
を使用できます 新しい値を割り当てるか、古い値を保持するかを制御します。
update <sometable>
set field = case when <condition> then <newvalue> else field end
where <condition>
例:
update questions
set reply = case when @input is not null then @input else reply end
where answer = 42