G
Gary B
Using the following table data:
TableName = ClaimsHistory
PrimaryKey ClaimID
1 1
2 1
3 2
4 2
5 2
6 3
How do I return just the "newest" row for each unique ClaimID?
If properly done, I would return:
PrimaryKey ClaimID
2 1
5 6
6 3
TableName = ClaimsHistory
PrimaryKey ClaimID
1 1
2 1
3 2
4 2
5 2
6 3
How do I return just the "newest" row for each unique ClaimID?
If properly done, I would return:
PrimaryKey ClaimID
2 1
5 6
6 3