从mySQL结果集中查找rownum进行排名
我有一个表存储游戏用户的分数 - 如果可能的话,我希望能够单独使用 mySQL 找到他们的排名(因为如果玩家数量呈指数级增长,则解析整个数据库的 php 循环时间将会增加戏剧性地)。
到目前为止,我已经能够让这个语句
select @rownum:=@rownum+1 'rank', s.* from top100 s, (select @rownum:=0) r order by score desc
返回一个应用了排名的结果集 - 然后我需要做的是使用子查询找到其中的单个项目,以从先前的插入中查找玩家的最后一个 insert_id 。
任何帮助将不胜感激。
I have a table that stores scores from users of my game - what I want to be able to do if possible is find their rank using mySQL alone (because if the amount of players increases exponentially the php loop times to parse the entire database will increase dramatically).
So far I have been able to get this statement
select @rownum:=@rownum+1 'rank', s.* from top100 s, (select @rownum:=0) r order by score desc
to return a result set with rankings applied - what I then need to be able to do is find a single item within that using a subquery to find the players last insert_id from a previous insert.
Any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)