/*select round(max(gpa),1) as gpa from user_profile
where university='复旦大学';
*/

select round(gpa,1) as gpa from user_profile
where university='复旦大学'
order by gpa desc
limit 1;