题解 | #查找GPA最高值#
查找GPA最高值
http://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f
select
max(gpa ) AS gpa
from user_profile
WHERE
university='复旦大学'
另一种写法是select gpa from user_profile where university='复旦大学' order by gpa desc limit 1
查找GPA最高值
http://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f
select
max(gpa ) AS gpa
from user_profile
WHERE
university='复旦大学'
另一种写法是select gpa from user_profile where university='复旦大学' order by gpa desc limit 1
相关推荐