Mysql some complex sql statements (query and delete duplicate rows)

Mysql some complex sql statements (query and delete duplicate rows)

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:
  • Use SQL batch replace statements to modify, add, and delete field contents
  • SQL statement to delete duplicate records and keep only one
  • Must-know SQL statements (IV) Data deletion and update
  • Must-know SQL statements (Part 2) Create table, modify table structure, delete table
  • Example code for creating and deleting constraints using SQL statements
  • Oracle uses SQL statements to add fields (SQL delete field statements)
  • SQL statement to batch delete the specified prefix table in MySQL
  • How to delete and add foreign keys and primary keys using SQL statements
  • Comparison of MySQL Delete and Truncate statements
  • Simply understand the differences in the principles of common SQL delete statements

<<:  Implementing a puzzle game with js

>>:  Listen directive example analysis in nginx

Recommend

CUDA8.0 and CUDA9.0 coexist under Ubuntu16.04

Preface Some of the earlier codes on Github may r...

MySQL json format data query operation

The default table name is base_data and the json ...

Summary of the differences between global objects in nodejs and browsers

In Node.js, a .js file is a complete scope (modul...

Analyze how a SQL query statement is executed in MySQL

Table of contents 1. Overview of MySQL Logical Ar...

Analysis of the use of the MySQL database show processlist command

In actual project development, if we have a lot o...

Vue basic instructions example graphic explanation

Table of contents 1. v-on directive 1. Basic usag...

JavaScript prototype and prototype chain details

Table of contents 1. prototype (explicit prototyp...

Use CSS to implement special logos or graphics

1. Introduction Since pictures take up a lot of s...

Detailed explanation of Javascript event capture and bubbling methods

Table of contents 1. Event Processing Model 1. Ev...

Mysql query database capacity method steps

Query the total size of all databases Here’s how:...

Detailed steps to install the NERDTree plugin in Vim on Ubuntu

NERDTree is a file system browser for Vim. With t...

JavaScript MouseEvent Case Study

MouseEvent When the mouse performs a certain oper...

Setting the engine MyISAM/InnoDB when creating a data table in MySQL

When I configured mysql, I set the default storag...