madramor wrote: would be simpler and a lot faster
bonkey wrote: Except that it ignores the stated need to retrieve other information from the row in which the max(date) resides. jc
ID col_a col_b col_c 1 1 3 987 1 2 6 564 2 6 2 123 2 9 5 231
ID col_a col_b MAX(col_c) 1 1 3 987 2 6 2 231
madramor wrote: i can't see your point?
SELECT col_a, col_b, MAX(col_c) from myTable GROUP BY ID
bonkey wrote: So the "Other Data" that you refer to...how can you ensure its from the same row the Max() has selected a record from?