Say I've got the following table
---------------
|1|2006-10-04|
|1|2006-10-05|
|2|2006-10-04|
|2|2006-10-05|
---------------
How could I write a SQL query to return the most recent record for each id? The result should look like this
---------------
|1|2006-10-05|
|2|2006-10-05|
---------------


Reply With Quote
