Hey buyer!
Let's see your current query SQL.
I suspect you are not delimiting dates correctly.
regards
Jack
Main Topics
Browse All TopicsI am trying to query a SQL database (Websense) using Access query. The date/time is in form of 12/20/2003 12:23:23 PM. I am trying to query records that are between a certain date and time but having problems make the query work. Is there an easy solution to this? I see there is many threads on this issue on the Internet.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I think the reply will depend on how you build your query :
If you use linked tables in Access, you must use the ordinary Access syntax, the easyest is to use the query builder to create the query.
If you create a query string for using it with a direct connection to you sql database, the string you built must respect the SQL db syntax. for example, you can build it with :
wDate1 = dateadd("y",-1,now())
wDate2 = now()
SQLStr = 'select * from Table1 where T1_CreationDate between ' & format(wDate1,"mm/dd/yyyy Hh:Mm:Ss AM/PM") & ' and ' a format(wDate2,"mm/dd/yyyy Hh:Mm:Ss AM/PM")
Business Accounts
Answer for Membership
by: CallandorPosted on 2004-01-06 at 12:02:31ID: 10055347
You can use phrases like "between date1 and date2". Don't forget # around dates.