update xxx set a=1 where a=2;
update xxx set a=2 where a=3;
update xxx set a=3 where a=4;
三条 sql 整合成一条
UPDATE x
SET a =
CASE
WHEN a=1 THEN 2
WHEN a=2 THEN 3
WHEN a=4 THEN 4
ELSE a
END
update xxx set a=1 where a=2;
update xxx set a=2 where a=3;
update xxx set a=3 where a=4;
三条 sql 整合成一条
UPDATE x
SET a =
CASE
WHEN a=1 THEN 2
WHEN a=2 THEN 3
WHEN a=4 THEN 4
ELSE a
END
本文标题:带条件的 update
本文链接:https://www.haomeiwen.com/subject/rgplrdtx.html
网友评论