select a.device_id,a.university,a.gpa from user_profile a inner join (select university,min(gpa) as gpa from user_profile a group by university )b on a.university=b.university and a.gpa=b.gpa order by university