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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…