Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

3 month Trailing Date 1

Status
Not open for further replies.

dscoiho

MIS
Sep 26, 2005
51
US
Using SQL Server 2000. I have two Fields that I trying to limit to:

TRADE_MONTH(int)
TRADE_YEAR(int)

What I am trying to do is get the previous 3 fullmonths. So today is March 2007 I need December 2006 to February 2007. Trying to keep from having to manually input the numbers to query my results.

Also if anyone has a dateserial also for a different query that would greatly appreciated too.

Field is
datetime: 2004-10-16 09:44:05.380


Thanks for any help or insight.
 
Take a look at this:

Code:
select dateadd(month, datediff(month, 0, dateadd(month, -3, getdate())), 0)

So if that works, you could take everything

Code:
where datecol >= dateadd(month, datediff(month, 0, dateadd(month, -3, getdate())), 0)

Hope this helps,

Alex

Ignorance of certain subjects is a great part of wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top