Select top 10 records for each category(为每个类别选择前 10 条记录)
问题描述
我想在一个查询中返回每个部分的前 10 条记录.任何人都可以帮助如何做到这一点?部分是表中的列之一.
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.
数据库是 SQL Server 2005.我想按输入的日期返回前 10 名.部分是业务、本地和功能.对于某个特定日期,我只需要前 (10) 个业务行(最新条目)、前 (10) 个本地行和前 (10) 个特征.
Database is SQL Server 2005. I want to return the top 10 by date entered. Sections are business, local, and feature. For one particular date I want only the top (10) business rows (most recent entry), the top (10) local rows, and the top (10) features.
推荐答案
如果您使用的是 SQL 2005,您可以执行以下操作...
If you are using SQL 2005 you can do something like this...
SELECT rs.Field1,rs.Field2
FROM (
SELECT Field1,Field2, Rank()
over (Partition BY Section
ORDER BY RankCriteria DESC ) AS Rank
FROM table
) rs WHERE Rank <= 10
如果您的 RankCriteria 有平局,那么您可能会返回超过 10 行,Matt 的解决方案可能更适合您.
If your RankCriteria has ties then you may return more than 10 rows and Matt's solution may be better for you.
这篇关于为每个类别选择前 10 条记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为每个类别选择前 10 条记录


- 在SQL中,如何为每个组选择前2行 2021-01-01
- SQL 临时表问题 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01