Hello All,
I’m having trouble writing a WHERE statement that returns the records I want.
What I need is a rolling 12 months. That is, if I ran the query today I want returned records where the value of the date field is 02/01/2006 – 01/31/2007.
In my WHERE clause I have:
Code:
DateDiff(m,tbl.datetime,GetDate()) <= 12)
This returns records where the date field value is 02/01/2006 – 02/21/2007 (current date).
My SQL is (obviously) rudimentary. Could someone please remedy my ignorance here?
How can I get records where the value of the date field is 02/01/2006 – 01/31/2007?
Thanks for any/all suggestions!
- tm