Detailed explanation of MySQL group sorting to find the top N

Detailed explanation of MySQL group sorting to find the top N

MySQL group sorting to find the top N

Table Structure


Group by grp, sort by num, and take the top 3 in each group. The output is as follows:




source code:

SELECT * FROM score AS t3  
WHERE (  
  SELECT COUNT(*) FROM score AS t1  
  LEFT JOIN score AS t2  
  ON t1.grp = t2.grp AND t1.num < t2.num  
  WHERE t1.id = t3.id 
) < 3 
ORDER BY t3.grp ASC, num DESC 
 

In where, you can create a new variable for filtering through a subquery.

Thank you for reading, I hope it can help you, thank you for your support of this site!

You may also be interested in:
  • Mysql uses group by group sorting
  • Detailed explanation of the implementation principle of MySQL group query Group By
  • Implement group by based on MySQL to get the latest data of each group
  • How to use GROUP BY in MySQL to get the first N records
  • Detailed explanation of the implementation example of group ranking in Mysql tutorial

<<:  React+Koa example of implementing file upload

>>:  How to build Jenkins+Maven+Git continuous integration environment on CentOS7

Recommend

How to modify the default storage location of Docker images (solution)

Due to the initial partitioning of the system, th...

Implementation of HTML command line interface

HTML Part Copy code The code is as follows: <!D...

React realizes the whole process of page watermark effect

Table of contents Preface 1. Usage examples 2. Im...

Analysis of the solution to Nginx Session sharing problem

This article mainly introduces the solution to th...

New ideas for time formatting in JavaScript toLocaleString()

Table of contents 1. Conventional ideas for time ...

Detailed explanation of how to install PHP7 on Linux

How to install PHP7 on Linux? 1. Install dependen...

Hyper-V Introduction and Installation and Use (Detailed Illustrations)

Preface: As a giant in the IT industry, Microsoft...

Recommend 60 paging cases and good practices

<br />Structure and hierarchy reduce complex...

Docker realizes the connection with the same IP network segment

Recently, I solved the problem of Docker and the ...

jQuery+Ajax to achieve simple paging effect

This article shares the specific code of jquery+A...

A brief discussion on size units in CSS

The compatibility of browsers is getting better a...

Detailed analysis of classic JavaScript recursion case questions

Table of contents What is recursion and how does ...

MySQL 8 new features: Invisible Indexes

background Indexes are a double-edged sword. Whil...