select device_id,university,gpa from user_profile u where gpa = ( select min(gpa) from user_profile p where p.university = u.university ) order by unive...