How to update in SQL to get distinct tuples / not to violate a unique constraint(如何在 SQL 中更新以获得不同的元组/不违反唯一约束)
问题描述
我有一个在元组 (c_id, t_id) 上有唯一约束的映射表.
I have a mapping table with a unique contraint on the tuple (c_id, t_id).
这里有一些示例数据来说明这种情况:
Here's some sample data to illustrate the situation:
id c_id t_id
----------------
1 10 2
2 10 3
3 10 7
4 12 2
5 13 3
我为 t_ids (x,y -> z OR x,y -> x) 编写了一个合并函数.如果我的内容(c_id)同时具有t_ids,那么我当然违反了使用以下语句的约束:
I wrote a merge function for t_ids (x,y -> z OR x,y -> x).
If my content (c_id) has both t_ids, then I'm of course violating the constraint by using this statement:
UPDATE mapping_table
SET t_id = '$target_tid'
WHERE t_id = '$t1_id' OR t_id = '$t2_id';
结果是:
id c_id t_id
----------------
1 10 4
2 10 4 /* violates unique constraint */
3 10 7
现在我想出了这个:
/* delete one of the duplicate entries */
DELETE FROM mapping_table
WHERE ( SELECT count(c_id)
FROM mapping_table
WHERE t_id = '$t1_id' OR t_id = '$t2_id'
) > 1;
/* update the remaining row */
UPDATE mapping_table
SET t_id = '$target_tid'
WHERE t_id = '$t1_id' OR t_id = '$t2_id';
现在我收到以下错误:FROM子句中不能指定目标表'mapping_table'进行更新
我的问题是:
- 这里到底出了什么问题?
DELETE语句是否被视为更新并且不能在WHERE子句中使用? - 这还有什么更有效的方法吗?
- What's exactly wrong here? Is the
DELETEstatement seen as an update and cannot be used in theWHEREclause? - This there any more efficient way to do this?
推荐答案
您遇到的错误是 MySQL 的特殊性.你可以用一组子查询来解决这个问题:
The error that you are having is a peculiarity of MySQL. You can get around this with a double set of subqueries:
DELETE FROM mapping_table
WHERE (select *
from ( SELECT count(c_id)
FROM mapping_table
WHERE t_id = '$t1_id' OR t_id = '$t2_id'
) > 1
) t
不过,要解决您的问题,只需删除除最小值之外的所有 id.我认为这也可能有效:
To fix your problem though, just remove all ids except for the minimum. I think this might also work:
delete from mapping_table
where id > (select minid from (select min(id) from mapping_table mt2
where mt2.c_id = mapping_table.c_id and
mt2.t_id = mapping_table.t_id
)
)
您还可以将 id 列表存储在临时表中,并在查询中使用它:
You can also store the list of ids in a temporary table, and use that in the query:
create temporary table minids as
select c_id, t_id, min(id) as minid
from mapping_table
group by c_id, t_id;
delete from mapping_table
where exists (select 1 from minids
where mt2.c_id = mapping_table.c_id and
mt2.t_id = mapping_table.t_id and
mt2.minid > mapping_table.id
)
这篇关于如何在 SQL 中更新以获得不同的元组/不违反唯一约束的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 SQL 中更新以获得不同的元组/不违反唯一约束
基础教程推荐
- 带有WHERE子句的LAG()函数 2022-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 带更新的 sqlite CTE 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
