12
May
http://msdn.microsoft.com/en-us/library/ms186724.aspx
Its really easy to do - best to do all of this on the database - that’s what it is for!
This finds stuff that is from 6 months ago until today:
WHERE yourDate BETWEEN DATEADD(MONTH, -6, CURRENT_TIMESTAMP) AND CURRENT_TIMESTAMP
0