题解 | #查找GPA最高值#
查找GPA最高值
https://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f
select max(gpa) from user_profile where university = '复旦大学'; select gpa from user_profile where university = '复旦大学' order by gpa desc limit 0, 1;
方法1:利用max函数计算最大值
方法2:先筛选负担学生gpa,然后降序排序,利用limit 0,1只显示第一个信息也就是最高值