带条件的 update
2023-03-15 本文已影响0人
追风骚年
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