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