题解 | #查找GPA最高值#
查找GPA最高值
https://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f
select round(max(gpa),1) as gpa //取gpa最大值,保留一位小数 from user_profile where university = '复旦大学'; //注意是复旦大学的最高gpa
查找GPA最高值
https://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f
select round(max(gpa),1) as gpa //取gpa最大值,保留一位小数 from user_profile where university = '复旦大学'; //注意是复旦大学的最高gpa
相关推荐