Sql 获取每种类型的顶行
我有一个表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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是“每组最大的 n”查询。根据此处,以下内容应该在 DB2 中工作
This is a "greatest n per group" query. According to here the below should work in DB2