SQL 组按日期排序

发布于 2024-12-20 08:21:46 字数 338 浏览 1 评论 0原文

我有一个类似于以下内容的表:

id
type
created (date).

我想要的是返回每种类型最近创建的项目。因此,它将为每种类型返回一个项目(最新的)。

EG

id:1 type:A 创建时间:2011

id:2 type:A 创建时间:2008

id:3 type:B 创建时间:2009

< code>id:4 type: B created:2010

这将返回记录 id 1 和 4。

I have a table that resembles the following:

id
type
created (date).

What I want is to return the most recently created item of each type. So it will return one item (most recent) for each type.

E.G.

id:1 type:A created:2011

id:2 type:A created:2008

id:3 type: B created:2009

id:4 type: B created:2010

This will return with record id 1 and 4.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄情伤 2024-12-27 08:21:46

这可以使用自连接来工作

select T1.* from table t1 LEFT JOIN table t2 
ON t1.type = t2.type and t1.created < t2.created
where t2.id is null

this works using a self join

select T1.* from table t1 LEFT JOIN table t2 
ON t1.type = t2.type and t1.created < t2.created
where t2.id is null
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文