sql语句查询所有的最高成绩

2024-12-11 09:24:22
推荐回答(2个)
回答1:

select 姓名,成绩 from table
where 成绩 = (select max(成绩) from table )

回答2:

select 姓名,max(成绩) from