Viewing 4 posts - 1 through 4 (of 4 total)
I have those days too
I did get it to work like this
SELECT DATEADD(day, 0 , DATEDIFF(day, 0, creationdate)), COUNT(*)
FROM tblUsers
GROUP BY DATEADD(day, 0 , DATEDIFF(day, 0, creationdate))
ORDER BY DATEADD(day, 0...
July 29, 2003 at 3:15 pm
Like This?
SELECT DATEADD(day, 0 , DATEDIFF(day, 0, creationdate)), COUNT(*)
FROM tblUsers
GROUP BY DATEADD(day, 0 , DATEDIFF(day, 0, creationdate))
ORDER BY DATEDIFF(day, 0, creationdate)
It generates another error (below)
Server: Msg 144, Level 15, State...
July 29, 2003 at 2:57 pm
oops,
I made a mistake with my last post.
I generate this error when running the following commands
SELECT DATEADD(day, 0 , DATEDIFF(day, 0, creationdate)), COUNT(*)
FROM tblUsers
GROUP BY DATEDIFF(day, 0, creationdate)
ORDER BY DATEDIFF(day,...
July 29, 2003 at 2:49 pm
Thank you kindly for all the help
It worked perfectly!
Rick
July 29, 2003 at 1:34 pm
Viewing 4 posts - 1 through 4 (of 4 total)