Some notes on mysql self-join deduplication

Some notes on mysql self-join deduplication

Let me briefly explain the functional scenario:

The data row fields are as follows:

name
started_at
type

In this table, name has duplicate values

Now we need to filter out a list when the type is determined, so that the name is not repeated and the record with the smallest started_at under the same name is found.

For example:

Event 1 2019-06-01 type1
Event 1 2019-06-02 type1
Event 1 2019-06-03 type1

Event 2 2019-06-03 type1
Event 2 2019-06-05 type1
Event 2 2019-06-07 type1

The sieve list should be:

Event 1 2019-06-01 type1
Event 2 2019-06-03 type1

It also needs to satisfy that started_at is greater than the current time

How should I write such sql?

The solution is:

Is to use left join itself

For example, s1 left join s2 on s1.name=s2.name and s2.started_at<s1.started_at and s2.started_at > now()

Finally where s2.id is null

SELECT
 s1.NAME,
 s1.started_at,
 
FROM
 tbl s1
 LEFT JOIN tbl s2 ON s1.`name` = s2.`name` 
  AND s1.started_at > s2.started_at 
  AND s2.started_at > now() 
WHERE
  s2.id IS NULL 
  AND s1.started_at > now() 
 AND s1.type = 'online_lecture'
ORDER BY
 s1.NAME,
 s1.started_at;

Does anyone have any better solution?

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • Analysis of MySQL: single table distinct, multi-table group by query to remove duplicate records
  • mysql SELECT statement to remove duplicate information in a field
  • Detailed example of removing duplicate data in MySQL
  • One sql statement completes MySQL deduplication and keeps one
  • MySQL deduplication methods
  • MySQL development skills: JOIN update and data duplication check/deduplication
  • Mysql delete duplicate data Mysql data deduplication
  • Detailed explanation of two methods of deduplication in MySQL and example code
  • A simple method to merge and remove duplicate MySQL tables
  • How to optimize MySQL deduplication operation to the extreme
  • MySQL optimization tips: analysis of duplicate removal implementation methods [millions of data]

<<:  Linux traceroute command usage detailed explanation

>>:  Detailed explanation of the pitfalls of mixing npm and cnpm

Recommend

Install mysql5.7.17 using RPM under Linux

The installation method of MySQL5.7 rpm under Lin...

Bootstrap 3.0 study notes grid system principle

Through the brief introduction in the previous tw...

Sample code for batch deployment of Nginx with Ansible

1.1 Copy the nginx installation package and insta...

Troubleshooting the cause of 502 bad gateway error on nginx server

The server reports an error 502 when synchronizin...

How to change the MySQL database directory location under Linux (CentOS) system

How to change the MySQL database directory locati...

In-depth explanation of various binary object relationships in JavaScript

Table of contents Preface Relationships between v...

vue uses Ele.me UI to imitate the filtering function of teambition

Table of contents Problem Description The general...

Use JS to operate files (FileReader reads --node's fs)

Table of contents JS reads file FileReader docume...

CSS stacking and z-index example code

Cascading and Cascading Levels HTML elements are ...

Service management of source package installation under Linux

Table of contents 1. Startup management of source...

Detailed analysis of Vue child components and parent components

Table of contents 1. Parent components and child ...

Some slightly more complex usage example codes in mysql

Preface I believe that the syntax of MySQL is not...

Detailed explanation of a method to rename procedure in MYSQL

Recently I have used the function of renaming sto...