select gpa
from user_profile
where university = '复旦大学'
order by gpa desc limit 0,1;
//降序排列去第一名;limit 下标从0开始,取1条数据。