使用distinct和max的SQL查询
我有一个像这样的数据集:
type seqID text
A 1 Text1a
A 2 Text2a
A 3 Text3a
B 1 Text1b
B 2 Text2b
如何按类型返回具有按类型分组的最高 seqID 的行?因此,在上面的示例中,我希望返回包含 A, 3, Text3a 和 B, 2, Text2b 的行。
I have a dataset like:
type seqID text
A 1 Text1a
A 2 Text2a
A 3 Text3a
B 1 Text1b
B 2 Text2b
How do I get the row back by type with the highest seqID grouped by type? So in the above example I would want the row that has A, 3, Text3a and B, 2, Text2b returned.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
它不应该存在具有相同类型和更高 seqID 的任何其他行。
It shouldn't exists any other row with the same type and higher seqID.
您需要一个 ID,但由于“文本”对于此示例来说似乎是唯一的
You kind of need an ID, but since "Text" seems unique for this example
使用热膨胀系数
Using CTE
如果您使用的是 SQL Server 2005+,则可以使用 排名函数(更具体地说,
ROW_NUMBER()
):If you are on SQL Server 2005+, you could use a ranking function (more specifically,
ROW_NUMBER()
):尝试:
就这么简单。
Try:
As easy as that.
编辑解决方案。将此视为伪代码(因为我不熟悉 SQL Server 语法):
EDITED solution. Consider this a psuedo-code (since I am not familiar with SQL server syntax):