我试过这段代码
UPDATE testing_table t1
INNER JOIN testing_table t2 ON (t1.id, t2.id) IN ((1, 2),(2, 1))
SET t1.emp_id = t2.emp_id
但似乎有这个错误
#1062 - 重复录入' 3'对于密钥' emp_id'
让我知道如何交换2列vales而不违反mysql中的唯一约束
答案 0 :(得分:2)
在MySql中,这并不容易,因为它会在更新期间检查每条记录的唯一约束,而不是最后(仅限)。
因此,为了允许交换列的值,您需要允许列获取不会与任何约束冲突的临时值。因此,如果您的列具有外键约束,和也不允许null
值,则在所有可能情况下都很难找到这样的值。
对于以下解决方案,必须允许null
个值。如果他们当前不是,那么首先发出此声明以允许{em> emp_id 列null
:
alter table testing_table modify column emp_id int null;
然后:
start transaction;
update testing_table
set emp_id = null
where id = 1 and if(@emp1 := emp_id, 1, 1)
or id = 2 and if(@emp2 := emp_id, 1, 1);
update testing_table
set emp_id = if(id = 1, @emp2, @emp1)
where id in (1, 2);
commit;
这将首先将值设置为null
,同时将其先前的值存储在@emp1
和@emp2
中,并使用这些变量中保留的值更新相同的记录,但是已交换
第一个if
语句中的update
就是为了确保赋值返回true
表达式并使where
条件成功。另请注意,短路评估将确保仅在and
运算符的左侧评估为true
时才会发生这些分配。
答案 1 :(得分:0)
请试试这个。它应该适合你:))
td