oracle如何查询一张成绩表中最高分

2025-03-16 05:38:44
推荐回答(2个)
回答1:

查询最高的分数是多少的话:
select max(分数列名) from 表
查询最高分都是谁的话
select 姓名,分数 from 表 where 分数=(select max(分数) from 表)
希望能帮到您!

回答2:

select max(分数) from 表名;