首頁  >  文章  >  資料庫  >  Mysql中查詢與刪除重複行的一些複雜的sql語句

Mysql中查詢與刪除重複行的一些複雜的sql語句

黄舟
黄舟原創
2017-05-21 10:05:571157瀏覽

這篇文章主要介紹了Mysql一些複雜的sql語句(查詢刪除重複的行),需要的朋友可以參考下

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;

以上是Mysql中查詢與刪除重複行的一些複雜的sql語句的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn