Hi i want to get the lastest date in query can you help me?
Hi i want to get the lastest date in query can you help me?
That's a bit nebulous, but a query would be:
SELECT Max(FieldName) AS MaxFieldName
FROM TableName
You could also use a DMax() function.