gpt4 book ai didi

MySQL:获取特定行的行号(排名)

转载 作者:可可西里 更新时间:2023-11-01 06:35:18 29 4
gpt4 key购买 nike

我有一个 users 表,其中有一列名为 money_sent。我想按 money_sent 降序排列此表,然后找出特定用户的“排名”。

例如,只有 111 人比用户 12392 花费更多的钱,因此他们将排在第 112 位。

我该如何查询?

最佳答案

怎么样:

SELECT count(*) FROM users WHERE money_sent < (
SELECT money_sent FROM users WHERE user = 'joe'
);

关于MySQL:获取特定行的行号(排名),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/504116/

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