gpt4 book ai didi

mysql - 得分+当前玩家得分排名前10的玩家

转载 作者:可可西里 更新时间:2023-11-01 07:22:43 26 4
gpt4 key购买 nike

对于服务器游戏...我有表珠宝:

rank,player_id, plscore.

我想显示按分数从高到低排序的前 10 名玩家,如果当前玩家不在前 10 名,则加上当前玩家的分数。
如果我/你目前不在前 10 名,它可以是我或你的分数。最多可拾取 70 颗 gem 。

示例(所需):

__________________________________
rank | player_id | plscore

1 zorro007 70
2 trus 70
3 edvino 67
4 snow.boy 65
5 anida 61
6 nadal_raffo 58
7 syskowitz 43
8 misterProKill 27
9 katamadu134 22
10 ewrgreen89 16
. . .
. . .
94 CURRENT PLAYER 7
___________________________________

图片:http://postimg.org/image/3x8ktdjct/

最佳答案

SELECT rank, player_id, plscore 
FROM table_name WHERE rank < 11
OR player_id = current_player_id
ORDER BY rank;

关于mysql - 得分+当前玩家得分排名前10的玩家,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19907458/

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