Hi,
is there a way in SQL server that i can count the items 90 days prior to the inception date and the items 90 days after the inception date. Example:
select
site,
count(*)
from mytable
where date >=10/1/2009'
and date <'12/30/2009'
group by site
90 days before - after inception date.
prior to inception date = 7/3/2009.
inception date = 10/1/2009.
after inception date = 12/29/2009.