Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
409 views
in Technique[技术] by (71.8m points)

sql - Get top scorer(s) in MySQL

I have simple table:

ID    Score
1     90
2     85
3     96
4     96
5     73

I want to get the top scorer(s) so I used max function:

select max(s.score) as score,
    s.id
from student_score as s

result:

score    id
96       1

The problem is, there are two top scorers, how am I going to get all top scorers?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The subquery gets the maximum score from table student_score which the result will be used to compare on WHERE clause.

SELECT a.*
FROM student_score a
WHERE Score = 
(
    SELECT MAX(Score)
    FROM student_score
)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...