Select top 10 records for each category

前端 未结 14 1451
别那么骄傲
别那么骄傲 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:16

    If you know what the sections are, you can do:

    select top 10 * from table where section=1
    union
    select top 10 * from table where section=2
    union
    select top 10 * from table where section=3
    

提交回复
热议问题