Mysql一些复杂的sql语句(查询与删除重复的行)
程序员文章站
2022-07-05 11:17:29
1.查找重复的行
select * from blog_user_relation a where (a.account_instance_id,a.follow...
1.查找重复的行
select * from blog_user_relation a where (a.account_instance_id,a.follow_account_instance_id) in (select account_instance_id,follow_account_instance_id from blog_user_relation group by account_instance_id, follow_account_instance_id having count(*) > 1)
2.删除重复的行(保留一条)
ps:因为mysql的delete,如果被删的表的where条件里有in,且in里面也有此表,那就删除不了。
/*创建个临时表*/ create table blog_user_relation_temp as ( select * from blog_user_relation a where (a.account_instance_id,a.follow_account_instance_id) in ( select account_instance_id,follow_account_instance_id from blog_user_relation group by account_instance_id, follow_account_instance_id having count(*) > 1) and relation_id not in (select min(relation_id) from blog_user_relation group by account_instance_id, follow_account_instance_id having count(*)>1)); /*删除数据*/ delete from `blog_user_relation` where relation_id in (select relation_id from blog_user_relation_temp); /*删除临时表*/ drop table blog_user_relation_temp;
上一篇: Vue+element-ui添加自定义右键菜单的方法示例
下一篇: go语言template用法实例
推荐阅读
-
Oracle与MySQL的分页查询sql语句格式实例讲解
-
关于mysql中删除重复记录,并保留重复数据中的一条数据的SQL语句的深入理解
-
Mysql一些复杂的sql语句(查询与删除重复的行)
-
oracle分页、mysql分页、删除重复记录及简单的sql的查询教程
-
MySQL中删除完全重复数据的准确SQL语句
-
用SQL语句添加删除修改字段、一些表与字段的基本操作、数据库备
-
mysql中删除完全重复数据的准确SQL语句_MySQL
-
用SQL语句添加删除修改字段、一些表与字段的基本操作、数据库备
-
查询语句很复杂-mysql由四张表查出一张新的表,sql语句太复杂,求助!!!!
-
查询语句很复杂-mysql由四张表查出一张新的表,sql语句太复杂,求助!!!!