gpt4 book ai didi

mysql - 获取MySQL查询的位置

转载 作者:行者123 更新时间:2023-11-29 23:26:55 24 4
gpt4 key购买 nike

MySQL 查询,列出按分数和排名排序的所有记录。但现在,我如何从名称中获取特殊列?

查询:

    SET @a=0; 
SELECT (@a:=@a+1) as Rank, `player`, `points`, `id` FROM `score`
ORDER BY `points` DESC (WHERE player='example');

感谢您的帮助。 :)

我正在使用 Java。

最佳答案

select * from 
(
SELECT (@a:=@a+1) as Rank, `player`, `points`, `id`
FROM `score`
CROSS JOIN (select @a := 0) ta
ORDER BY `points` DESC
) tmp
WHERE player='example'

关于mysql - 获取MySQL查询的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26886434/

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