Got table ABC with one column. A date column "created". So sample values are like;
created
2009-06-18 13:56:00
2009-06-18 12:56:00
2009-06-17 14:02:00
2009-06-17 13:12:23
2009-06-16 10:02:10
I want to write a query so that the results are:
count created
2 2009-06-18
2 2009-06-17
1 2009-06-16
Basically count how many entries belong to each date, but ignoring time.
This is in PL-SQL with Oracle.
Any ideas?