Ok, hopefully I'll make some sense of this so it won't take long to figure out. I'm just stumped...
Have a field (date_applied) that is a timestamp. I format the date with date_format and %m/%e/%Y...I want to count all occurrences of any date. So let's say you have this:
3/12/2005
3/28/2005
3/28/2005
4/1/2005
4/1/2005
4/1/2005
4/11/2005
I'd like to see this:
count | date_applied
1 | 3/12/2005
2 | 3/28/2005
3 | 4/1/2005
1 | 4/11/2005
Any help would be appreciated.
Have a field (date_applied) that is a timestamp. I format the date with date_format and %m/%e/%Y...I want to count all occurrences of any date. So let's say you have this:
3/12/2005
3/28/2005
3/28/2005
4/1/2005
4/1/2005
4/1/2005
4/11/2005
I'd like to see this:
count | date_applied
1 | 3/12/2005
2 | 3/28/2005
3 | 4/1/2005
1 | 4/11/2005
Any help would be appreciated.