标签:where code cas 更新 when table date lan 禁用
update table_name set
status = case id
when 1 then ‘正常‘
when 2 then ‘禁用‘
when 3 then ‘过期‘
end,
rank = case id
when 1 then 1
when 2 then 2
when 3 then 3
end
where id in (1,2,3);
标签:where code cas 更新 when table date lan 禁用
原文地址:https://www.cnblogs.com/xinxinmifan/p/batch-update-data.html