Let me briefly explain the functional scenario: The data row fields are as follows:
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:
The sieve list should be:
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, Finally 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:
|
<<: Linux traceroute command usage detailed explanation
>>: Detailed explanation of the pitfalls of mixing npm and cnpm
The installation method of MySQL5.7 rpm under Lin...
Through the brief introduction in the previous tw...
1.1 Copy the nginx installation package and insta...
The server reports an error 502 when synchronizin...
This article mainly introduces the configuration ...
How to change the MySQL database directory locati...
The code looks like this: <!DOCTYPE html> &...
Table of contents Preface Relationships between v...
Table of contents Problem Description The general...
Table of contents JS reads file FileReader docume...
Cascading and Cascading Levels HTML elements are ...
Table of contents 1. Startup management of source...
Table of contents 1. Parent components and child ...
Preface I believe that the syntax of MySQL is not...
Recently I have used the function of renaming sto...