Hello,
I think I've been starring at this too long :-p
what I would like to do is, I would like to return all of the rows with the highest version number for the group_id.
Quick Table
app_id, name, group_id, app_ver
1000, Foo, com.foo, 1.0
1001, Foo, com.foo, 1.1
1020, Foo, com.foo, 1.4
1005, Bar, com.bar, 1.1
1006, Bar, com.bar, 1.2
Expected Results
1020, Foo, com.foo, 1.4
1006, Bar, com.bar, 1.2
Thanks,
tom