DATE!!

  • Thread starter Thread starter Nick Read
  • Start date Start date
N

Nick Read

****PLEASE HELP******

I am trying to create a query that only selects data from
a database where the date (I have date column in the
database) is less than or equal to today's date minus six
month.

Thanks

Nick
 
The SQL String should be something like:

SELECT *
FROM YourTable
WHERE YourDateField <= DateAdd("m", -6, Date())
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top