我有一个DocumentHistory
包含这些列的表:
HistoryId DocumentId ChangeDate
1 100 1/1/2005
2 100 2/1/2010
3 200 2/2/2006
4 100 2/2/2001
5 200 2/2/2000
HistoryId
是关键。我想编写一个TSQL
查询,找到ChangeDate
每个文档的最大值并返回它HistoryId
,我的意思是查询结果将是:
HistoryId ChangeDate
2 2/1/2010
3 2/2/2006
我该怎么做?