例如
1 10 8 9 5
我应该在给定的列中找到两个值的最大值,因为在sql查询中答案是10和9
mnemlml81#
你可以用 order by 以及 limit :
order by
limit
select col from t order by col desc limit 2;
如果列可以有重复项,则可以使用 select distinct col .
select distinct col
1条答案
按热度按时间mnemlml81#
你可以用
order by
以及limit
:如果列可以有重复项,则可以使用
select distinct col
.