Hi
I have this SQL
SELECT Count(Alarmer_Jan04.ID) AS CountOfID, Alarmer_Jan04.[Create Date]
FROM Alarmer_Jan04
WHERE (((Alarmer_Jan04.[MC-AlarmDescr]) Like '*Heartbeat*'))
GROUP BY Alarmer_Jan04.[Create Date];
But I want it to group it into days according to the [Create Date]
So that my output would be something like this
date number
2004-01-20 20
Thanks
I have this SQL
SELECT Count(Alarmer_Jan04.ID) AS CountOfID, Alarmer_Jan04.[Create Date]
FROM Alarmer_Jan04
WHERE (((Alarmer_Jan04.[MC-AlarmDescr]) Like '*Heartbeat*'))
GROUP BY Alarmer_Jan04.[Create Date];
But I want it to group it into days according to the [Create Date]
So that my output would be something like this
date number
2004-01-20 20
Thanks