how to return record with latest date

J

Joe168

I have a query with a date field. How do I write in the criteria to
retrieve the record with latest date?

Thanks!

Joe
 
M

Marshall Barton

Joe168 said:
I have a query with a date field. How do I write in the criteria to
retrieve the record with latest date?


SELECT TOP 1 table.*
FROM table
ORDER BY thedatefield DESC
 
Top