1 and 1.025 for all other job codes. (The two underscores
represent any character.) The CASE expression returns a value for each row
that completes the SET clause.
update employees
set salary=salary*
case when jobcode like '__1' then 1.04
else 1.025
end;