Sql 获取每种类型的顶行

发布于 2024-12-08 15:03:10 字数 334 浏览 0 评论 0原文

我有一个表WorkLog(personId number,actionType number,doneOn timeStamp),现在我如何获取每个人的最新操作。

数据将类似于

p1 a1 timestamp1
p1 a2 timestamp2
p2 a1 timestamp3
p2 a3 timestamp4
p3 a1 timestamp5

输出应该是

p1 a2 timestamp2
p2 a1 timestamp3
p3 a1 timestamp5

数据库是DB2

I have a table WorkLog(personId number, actionType number, doneOn timeStamp), now how can i get the most recent action for each person.

the data will be like

p1 a1 timestamp1
p1 a2 timestamp2
p2 a1 timestamp3
p2 a3 timestamp4
p3 a1 timestamp5

the output should be

p1 a2 timestamp2
p2 a1 timestamp3
p3 a1 timestamp5

the database is DB2

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

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

发布评论

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

评论(1

走过海棠暮 2024-12-15 15:03:10

这是“每组最大的 n”查询。根据此处,以下内容应该在 DB2 中工作

WITH T AS
(
SELECT *,
       ROW_NUMBER() OVER (PARTITION BY personId ORDER BY doneOn DESC) RN
FROM WorkLog
)
SELECT personId , actionType , doneOn 
FROM T
WHERE RN=1

This is a "greatest n per group" query. According to here the below should work in DB2

WITH T AS
(
SELECT *,
       ROW_NUMBER() OVER (PARTITION BY personId ORDER BY doneOn DESC) RN
FROM WorkLog
)
SELECT personId , actionType , doneOn 
FROM T
WHERE RN=1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文