次のようなことができます:
update table t
set code = concat('code-', id)
where id in (1, 2, 3);
コードが実際にはIDに関連付けられていない場合は、case
を使用できます。 :
update table t
set code = (case when id = 1 then 'code-1'
when id = 2 then 'code-2'
when id = 3 then 'code-3'
end)
where id in (1, 2, 3);