考虑下表:
用户创建日期时间数量 ----- ----- -------- 吉姆 2012-09-19 01:00 1 吉姆 2012-09-19 02:00 5 吉姆 2012-09-19 03:00 2 鲍勃 2012-09-19 02:00 2 鲍勃 2012-09-19 03:00 9 鲍勃 2012-09-19 05:00 1
什么查询将返回每个 的最新行(由 定义CreatedDateTime
)User
,以便我们可以确定关联的Quantity
.
即以下记录
用户创建日期时间数量 ----- ----- -------- 吉姆 2012-09-19 03:00 2 鲍勃 2012-09-19 05:00 1
我们认为我们可以简单地Group By
User
添加CreatedDateTime
一个Having MessageCreationDateTime = MAX(.MessageCreationDateTime
. 当然这不起作用,因为Quantity
在Group By
.