你好,开发人员,
我想在我的程序中创建一个排名列表,并为此想要按其得分将mysql数据库的用户排序。我正在这样做:
select `name`,`points` from users order by `points` desc
为了获得更好的性能,我不想从一个给定的用户那里获得所有用户,而只能获得10+和10-,因为我还是不想在程序中显示整个排名列表。有人可以帮我吗?
答案 0 :(得分:0)
一种方法使用子查询和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行,其中包括指定的用户。