效果如下
2 李白 1001
2 李白2 10011 杜甫1 1001
1 杜甫2 1001
1 李白 1001
1 李白2 1001
2 杜甫1 1001
2 杜甫2 1001
update 表 set id=
(case when id=1 then 2
when id=2 then 1
end
) where cid=1001
效果如下
2 李白 1001
2 李白2 10011 杜甫2 1001
1 李白 1001
1 李白2 1001
2 杜甫1 1001
2 杜甫2 1001
update 表 set id=
(case when id=1 then 2
when id=2 then 1
end
) where cid=1001