题解 | #找出每个学校GPA最低的同学#
找出每个学校GPA最低的同学
https://www.nowcoder.com/practice/90778f5ab7d64d35a40dc1095ff79065
先根据大学分组,用窗口函数将gpa排名,升序排列,要取最小的时候就可以取排名为1的 select a.device_id,a.university,a.gpa from (select device_id,university,row_number() over(partition by university order by gpa asc)as r,gpa from user_profile)a where a.r=1 order by university asc