Click here to Skip to main content
15,886,038 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Just as an example i've got this data in a table:

ID    NAME     DATE
1     TEST-1   2012-1-1
2     TEST-1   2012-4-3
3     TEST-2   2012-2-3
4     TEST-2   2012-6-4


what query do i use to get the result

ID    NAME     DATE
2     TEST-1   2012-4-3
4     TEST-2   2012-6-4


I want it to GROUP BY name, and show the one with the max ID?
Is there a query i can use to do this, my sql skills are very basic.

[edit]text block added[/edit]
Posted
Updated 18-Nov-12 11:09am
v2

1 solution

Select * From tablename where ID in(Select Max(ID) From tablename group by name)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900