Im haveing a problem extracting the latest timestamp from a table where the only thing that may differentiate records is the timestamp.
Name result timestamp
gary busey 1 9/1/2010 14:14
gary busey 1 9/2/2010 14:14
Darth Vader 1 9/1/2010 14:14
Darth Vader 1 9/5/2010 14:14
gary busey 2 9/1/2010 14:14
gary busey 1 9/3/2010 14:14
I need to pull only 1 record from this table where the result=1 and the timestamp is the latest timestamp by individual name.
My results should look like this:
Name result timestamp
Darth Vader 1 9/5/2010 14:14
gary busey 1 9/3/2010 14:14
Any help would be appreciated
Name result timestamp
gary busey 1 9/1/2010 14:14
gary busey 1 9/2/2010 14:14
Darth Vader 1 9/1/2010 14:14
Darth Vader 1 9/5/2010 14:14
gary busey 2 9/1/2010 14:14
gary busey 1 9/3/2010 14:14
I need to pull only 1 record from this table where the result=1 and the timestamp is the latest timestamp by individual name.
My results should look like this:
Name result timestamp
Darth Vader 1 9/5/2010 14:14
gary busey 1 9/3/2010 14:14
Any help would be appreciated