Which format to compare the date in Access 2003?

marks2007

Registered User.
Local time
Today, 11:17
Joined
Nov 12, 2007
Messages
31
Hi,

I try this way but it doesn't work

SELCT * FROM TABLES WHERE ApplDt > 2007-10-01

which format I have to use.Thanks

Mark
 
US date format, plus with date delimiters:

SELECT * FROM TABLES WHERE ApplDt > #10/01/2007#
 

Users who are viewing this thread

Back
Top Bottom