题解 | #查找GPA最高值#
查找GPA最高值
https://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f
select max(gpa) as gpa from user_profile where university = "复旦大学"
不用聚合,直接max就行
sql练习 文章被收录于专栏
记录练习过程
查找GPA最高值
https://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f
select max(gpa) as gpa from user_profile where university = "复旦大学"
不用聚合,直接max就行
记录练习过程
相关推荐