gpt4 book ai didi

php - 使用一个 SQL 请求更新多行

转载 作者:行者123 更新时间:2023-11-29 06:55:32 25 4
gpt4 key购买 nike

如何使用一个 SQL 请求更新 10 行

UPDATE gallery_photos SET queue=:queue WHERE id = :id AND SET queue=:queue2 WHERE id = :id2";

类似这样的事情

最佳答案

您可以通过以下方式执行此操作:

UPDATE gallery_photos
SET queue = (CASE WHEN id = :id THEN :queue
WHEN id = :id2 THEN :queue2
ELSE queue -- strictly speaking, this is not not be necessary because of the outer `WHERE`
END)
WHERE id IN (:id, :id2);

关于php - 使用一个 SQL 请求更新多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45837815/

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