1. Find duplicate rows 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. Delete duplicate rows (keep one) PS: Because of MySQL's delete, if the where condition of the deleted table contains in, and this table also exists in in, then it cannot be deleted. /*Create a temporary table*/ 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 data*/ DELETE FROM `blog_user_relation` WHERE relation_id IN (SELECT relation_id FROM blog_user_relation_temp); /*Delete temporary table*/ DROP TABLE blog_user_relation_temp; You may also be interested in:
|
<<: Implementing a puzzle game with js
>>: Listen directive example analysis in nginx
Preface Some of the earlier codes on Github may r...
The default table name is base_data and the json ...
This question is a discussion among netizens in a...
In Node.js, a .js file is a complete scope (modul...
Table of contents 1. Overview of MySQL Logical Ar...
In actual project development, if we have a lot o...
Table of contents 1. v-on directive 1. Basic usag...
Table of contents 1. prototype (explicit prototyp...
1. Introduction Since pictures take up a lot of s...
Table of contents 1. Event Processing Model 1. Ev...
Query the total size of all databases Here’s how:...
NERDTree is a file system browser for Vim. With t...
MouseEvent When the mouse performs a certain oper...
Jiedaibao is a mobile phone loan software platfor...
When I configured mysql, I set the default storag...