Detailed example of getting the maximum value of each group after grouping in MySQL

Detailed example of getting the maximum value of each group after grouping in MySQL

Detailed example of getting the maximum value of each group after grouping in MySQL

1. The test database table is as follows:

create table test 
( 
  `id` int not null auto_increment, 
  `name` varchar(20) not null default '', 
  `score` int not null default 0, 
  primary key (`id`) 
)engine=InnoDB CHARSET=UTF8; 

2. Insert the following data:

mysql> select * from test; 
+----+----------+-------+ 
| id | name | score | 
+----+----------+-------+ 
| 1 | jason | 1 | 
| 2 | jason | 2 | 
| 3 | jason | 3 | 
| 4 | linjie | 1 | 
| 5 | linjie | 2 | 
| 6 | linjie | 3 | 
| 7 | xiaodeng | 1 | 
| 8 | xiaodeng | 2 | 
| 9 | xiaodeng | 3 | 
| 10 | hust | 2 | 
| 11 | hust | 3 | 
| 12 | hust | 1 | 
| 13 | haha ​​| 1 | 
| 14 | haha ​​| 2 | 
| 15 | dengzi | 3 | 
| 16 | dengzi | 4 | 
| 17 | dengzi | 5 | 
| 18 | shazi | 3 | 
| 19 | shazi | 4 | 
| 20 | shazi | 2 | 
+----+----------+-------+ 

3. The following is the key point. The purpose is to group by name , and then after grouping, get the highest score in each group. The sql is as follows

select a.* from test a inner join (select name,max(score) score from test group by name)b on a.
name=b.name and a.score=b.score order by a.name; 

Of course, the last order by a.name above can be removed

4. The test results are as follows:

+----+----------+-------+ 
| id | name | score | 
+----+----------+-------+ 
| 3 | jason | 3 | 
| 6 | linjie | 3 | 
| 9 | xiaodeng | 3 | 
| 11 | hust | 3 | 
| 14 | haha ​​| 2 | 
| 17 | dengzi | 5 | 
| 19 | shazi | 4 | 
+----+----------+-------+ 

5. Many methods on the Internet are wrong, such as the following, which will not work if tested personally

select * from (select * from test order by score desc) t group by name order by score desc limit 4; 
select score,max(score) from test group by name; 
select * from test where score in (select max(score) from test group by name); 
select * from test where score in (select substring_index(group_concat(score order by score desc separator ','),',',1) from test group by name); 
 
select * from (select name,score,ROW_NUMBER() over(group by name order by score desc) as rowNum from test) rank where rank.rowNum <=1 order by rank.score desc; 
 
select * from( select StoresNo,[CustomerCaseNo],[PaymentsTime], ROW_NUMBER() over(partition by CustomerCaseNo order by [PaymentsTime] desc) as rowNum 
from BAL_paymentsSwiftInfo where StoresNo='zq00000034') ranked where ranked.rowNum <= 1 order by ranked.CustomerCaseNo, ranked.PaymentsTime desc 
 
select * from (select * from test order by score desc) as a group by a.name; 

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 grouping and randomly getting one piece of data from each group
  • Implement group by based on MySQL to get the latest data of each group
  • MySQL subqueries and grouped queries
  • MySQL grouping queries and aggregate functions
  • MySql Group By implements grouping of multiple fields
  • Detailed explanation of MySQL group sorting to find the top N
  • Mysql uses group by group sorting
  • Detailed explanation of MySQL data grouping

<<:  Methods and steps for Etcd distributed deployment based on Docker

>>:  Sample code for configuring nginx to support https

Recommend

User needs lead to marketing-oriented design

<br />For each of our topics, the team will ...

Docker uses dockerfile to start node.js application

Writing a Dockerfile Taking the directory automat...

About the role of meta in HTML (collected and sorted from the Internet)

W3Cschool explains it this way The <meta> el...

Docker container data volume named mount and anonymous mount issues

Table of contents What is a container data volume...

Example of automatic import method of vue3.0 common components

1. Prerequisites We use the require.context metho...

A brief discussion on Flex layout and scaling calculation

1. Introduction to Flex Layout Flex is the abbrev...

Comprehensive understanding of html.css overflow

Comprehensive understanding of html.css overflow ...

Explanation of the usage of replace and replace into in MySQL

MySQL replace and replace into are both frequentl...

How to configure the Runner container in Docker

1. Create a runner container mk@mk-pc:~/Desktop$ ...

Understand the principle of page replacement algorithm through code examples

Page replacement algorithm: The essence is to mak...

MySQL 8.0.2 offline installation and configuration method graphic tutorial

The offline installation method of MySQL_8.0.2 is...

How to convert a column of comma-separated values ​​into columns in MySQL

Preface Sometimes you come across business tables...