Click here to Skip to main content
15,881,715 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hi
how to create query to get details of how many request i got within 30 days and 30-60 days
and 60-90 days and >90days
can any one suggest me?

thank you
Posted

1 solution

Easy:
SQL
SELECT COUNT(*) FROM MyTable WHERE MyDate BETWEEN DATEADD(DAY, -30, GETDATE()) AND GETDATE()
and so forth
 
Share this answer
 
Comments
ythisbug 24-Feb-13 23:55pm    
thank you.but this query counting all.nt like within one month i mean in 30 days hw many request i gt
OriginalGriff 25-Feb-13 3:13am    
And how do you determine if something is a "request"?
ythisbug 27-Feb-13 4:45am    
for example i told request..
actually am selecting itemid and two dates to get total count withing 30 days
OriginalGriff 27-Feb-13 5:00am    
So just modify the WHERE clause...
ythisbug 27-Feb-13 5:18am    
ok thank you

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900