Viewing 4 posts - 166 through 169 (of 169 total)
A B ...
December 3, 2008 at 11:40 am
First, Set DATEFIRST 6 --Since I wish to start counting records on saturday to Friday of every week.
SELECT COUNT(ClearedDate) AS 'Month',
...
November 26, 2008 at 2:07 pm
Hello Genius people,
I rewrite the script and it's still not showing the correct display as I wish. Would you please tell me what wrong with my script? Here is my...
November 26, 2008 at 12:44 pm
Select Count(ClearedDate) As 'Total Cleared'
from DEClearedDate
Where (Datepart(dw,ClearedDate)>=1) And (Datepart(dw,ClearedDate)<=6)
Here is the format of my table
dbo.DEClearearedDate
ClearedDate
10/4/2008
10/5/2008 ...
November 26, 2008 at 8:12 am
Viewing 4 posts - 166 through 169 (of 169 total)