0

我想对他的核心表进行分页。我有 2 张桌子:

gs_score_table

id (auto increment int)
project_id (int)
game_id (int)
user_id (int)
entry_date (datetime)
score (int)

用户

id (auto increment int)
user_name (varchar)

我想要的是通过 获取 hiscores 列表和 order 列表scores DESC,但我总是在第 5 行(this: ROW_NUMBER() OVER (ORDER BY total_score DESC) AS RowNumber)出现错误,说:

列名“total_score”无效。

任何人都可以帮忙吗?

SELECT TOP 50
    *
FROM
    (SELECT
        ROW_NUMBER() OVER (ORDER BY total_score DESC) AS RowNumber,
        gs.user_id,
        users.user_name,
        SUM(gs.score) AS total_score, 
        (SELECT COUNT(gs2.id) FROM gs_score_table AS gs2 WHERE gs2.user_id = gs.user_id AND gs2.game_id = 1) AS games_played,
        TotalRows=Count(*) OVER()
    FROM
        gs_score_table AS gs
    INNER JOIN
        users ON users.id = gs.user_id
    WHERE
        gs.project_id = 2
        AND gs.game_id = 1
        AND CAST(gs.entry_date AS date) BETWEEN '2012-04-23' AND '2012-04-23'
    GROUP BY
        gs.user_id, users.user_name) _tmpInlineView WHERE RowNumber >= 1
4

1 回答 1

1

您不能在 ROW_NUMBER ORDER BY 子句中使用别名“total_score”。相反,您需要:

ROW_NUMBER() OVER (ORDER BY SUM(gs.score) DESC) AS RowNumber
于 2012-05-11T08:26:38.703 回答