DELETE all duplicate topics with few conditions(删除所有条件很少的重复主题)
问题描述
我正在尝试让 sql 删除所有重复的标题但必须在以下条件下删除重复的标题:
I'm trying to make sql who will delete all duplicate titles BUT must delete duplicates with these conditions:
- 必须只删除具有相同 object_id 的重复项
- 必须只保留最新的记录(最大的topic_id)(topic_id 是每个主题 AI 的唯一 id)
- must delete only duplicates with same object_id
- must keep only the newest record (biggest topic_id) (topic_id is the unique id for every topic AI)
到目前为止,我已经完成了(使用 select... 进行测试)
So far I've done that (testing with select...)
SELECT topic_id,object_id,title,url,date
FROM topics GROUP BY title
HAVING ( COUNT(title) > 1)
ORDER BY topic_id DESC
但不符合条件.
我正在使用 mysql.
But doesn't meet the conditions.
I'm using mysql.
推荐答案
在 MySQL 中,不能将目标表指定给子查询中的 DML 操作(除非您将其嵌套不止一层,但在这种情况下,您将无法获得可靠的结果,也无法使用相关的子查询).
In MySQL, you cannot specify the target table to a DML operation in a subquery (unless you nest it more than one level deep, but in this case you won't get reliable results and cannot use correlated subqueries).
使用 JOIN:
DELETE td
FROM topics td
JOIN topics ti
ON ti.object_id = td.object_id
AND ti.title = td.title
AND ti.topic_id > td.topic_id;
在 topics (object_id, title, topic_id) 上创建索引,以便快速工作.
Create an index on topics (object_id, title, topic_id) for this to work fast.
这篇关于删除所有条件很少的重复主题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:删除所有条件很少的重复主题
基础教程推荐
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 在多列上分布任意行 2021-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
