table_score 学生的分数表
number 学号
score 分数
select * from table_score a
where a.number = 'stu5'
order by a.score desc
limit 1 (or limit 10)
table_score 学生的分数表
number 学号
score 分数
select * from table_score a
where a.number = 'stu5'
order by a.score desc
limit 1 (or limit 10)