Select top 10 records for each category

前端 未结 14 1448
别那么骄傲
别那么骄傲 2020-11-22 04:27

I want to return top 10 records from each section in one query. Can anyone help with how to do it? Section is one of the columns in the table.

Database is SQL Serve

14条回答
  •  情书的邮戳
    2020-11-22 05:10

    SELECT r.*
    FROM
    (
        SELECT
            r.*,
            ROW_NUMBER() OVER(PARTITION BY r.[SectionID]
                              ORDER BY r.[DateEntered] DESC) rn
        FROM [Records] r
    ) r
    WHERE r.rn <= 10
    ORDER BY r.[DateEntered] DESC
    

提交回复
热议问题