题解 | 查找GPA最高值

查找GPA最高值

https://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f

# select gpa from user_profile
#     where university='复旦大学'
#         and gpa= (select max(gpa) from user_profile where university='复旦大学');

select round(max(gpa),1) as gpa from user_profile
    where university = '复旦大学';
  1. 注意取一位小数
  2. 学会用as,别瞎搞嵌套
全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务