gpt4 book ai didi

php - 部分获取有序行

转载 作者:行者123 更新时间:2023-11-29 16:45:32 25 4
gpt4 key购买 nike

开发者们大家好,

我想在我的程序中创建一个排名列表,为此想要让 mysql 数据库的用户按积分排序。我正在这样做:

select `name`,`points` from users order by `points` desc

为了获得更好的性能,我不想获得所有用户,而只想获得给定用户的 10+ 和 10-,因为我无论如何都不想在程序中显示整个排名列表。有人可以帮我解决这个问题吗?

最佳答案

一种方法使用子查询和union all:

(select name, points
from users
where points <= (select u2.points from users u2 where u2.name = ?)
order by points desc
limit 11
) union all
(select name, points
from users
where points > (select u2.points from users u2 where u2.name = ?)
order by points asc
limit 10
) ;

这将返回 21 行,其中包括指定的用户。

关于php - 部分获取有序行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53132295/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com