mysql update case 更新字段值不固定的操作
程序员文章站
2022-03-31 08:40:51
在处理批量更新某些数据的时候,如果跟你更新的字段的值都一样,比如某个状态都更新为某个固定值,直接用update table set xxx=xxx where xxx=xxx 这种即可如果要更新的字段...
在处理批量更新某些数据的时候,如果跟你更新的字段的值都一样,比如某个状态都更新为某个固定值,
直接用update table set xxx=xxx where xxx=xxx 这种即可
如果要更新的字段的值是不固定的,用下面的update case when where 这种方式就更方便了
update tablename set a1= case userid when 1 then a1+5 when 2 then a1+2 end, a2= case userid when 1 then a2-5 when 2 then a2-2 end where userid in (1,2)
用update case when 更新的时候一定要带上 where 条件,否则会更新整张表,后果很严重。
补充:mysql update && case when 联合使用 批量更新
直接码sql:
room字段值为 18f-n01 这种格式
update t_report set room = concat_ws( '-', substring_index(room, '-', 1) , case substring_index(room, '-', -1) when 'n01' then 'n02' when 'n02' then 'n01' when 'n03' then 'n11' when 'n04' then 'n10' when 'n05' then 'n09' when 'n06' then 'n08' when 'n07' then 'n07' when 'n08' then 'n06' when 'n09' then 'n05' when 'n10' then 'n03' end ) where rid in ( select rid from t_report where rdate = '190306' and ordinal between '23' and '32' )
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
上一篇: 铁棍山药煮多久才会软烂
下一篇: 炖排骨要放油吗