<p>请问 这样多条件更新 如何写?<br>
update ods_dictionary<br>
set module_note='成功变更邮箱设置'<br>
where module_id=12<br><br>
set module_note='点击邮箱'<br>
where module_id=13</p>
<p>update ods_dictionary<br>
set module_note=decode(module_id,13,'点击邮箱营销链接等行为',14,'基础邮箱其它行为')<br>
where module_id in (14,13)</p>
update ods_dictionary<br>
set module_note='成功变更邮箱设置'<br>
where module_id=12<br><br>
set module_note='点击邮箱'<br>
where module_id=13</p>
<p>update ods_dictionary<br>
set module_note=decode(module_id,13,'点击邮箱营销链接等行为',14,'基础邮箱其它行为')<br>
where module_id in (14,13)</p>