题解 | #查找GPA最高值#
查找GPA最高值
https://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f
select gpa from user_profile where university='复旦大学' order by gpa desc limit 1
使用order by和limit可以找到一个列中最高或者最低的值。
order by a desc
查找GPA最高值
https://www.nowcoder.com/practice/4e22fc5dbd16414fb2c7683557a84a4f
select gpa from user_profile where university='复旦大学' order by gpa desc limit 1
使用order by和limit可以找到一个列中最高或者最低的值。
order by a desc
相关推荐