Thanks, but no, that's not what I mean.
I want to know how many records there are for Monday, how many for Tuesday, etc. For instance I am using this to return a count by hour (for every day).
SELECT DatePart('h',mydatefield), COUNT(DatePart('h',mydatefield)) as CntHour
FROM mytable
GROUP BY...