gpt4 book ai didi

mysql - 有没有办法将两个更新查询合并为一个?

转载 作者:搜寻专家 更新时间:2023-10-30 21:50:46 24 4
gpt4 key购买 nike

我有多个更新查询。我想在一个声明中完成它们。查询是

update user set name = 'Something' where id = '1';
update user set name = 'Newthing' where id = '2';

我想要类似的东西

update user set name = 'Something' where id = '1' && update user set name = 'Newthing' where id = '2';

最佳答案

当然,只需使用 CASE 语句:

update user 
set name =
case when id = '1' then 'Something'
when id = '2' then 'Newthing'
end
where id in ('1','2')

关于mysql - 有没有办法将两个更新查询合并为一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24215697/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com