Question : Need to select last record updated per id

I have one table I need to pull a record from per id. Each ID can be shown mulitiple times with new pricing and update dates. I need to pull the record with the last update per ID. Thoughts? IN the example below I would want the 6-30-2008 record.
Table A:
Data:
ID                   Price                  UpdateDate
1234              8.99                   06-30-2008  
1234              6.99                   05-30-2008  

Answer : Need to select last record updated per id

here we go:
1:
2:
3:
SELECT t.*
  FROM yourtable t
 WHERE t.UpdateDate = ( SELECT MAX(i.updateDate) FROM yourtable I WHERE i.ID = t.ID )
Random Solutions  
 
programming4us programming4us