I have a table
id | message | date_posted
1 | testing | 2011-03-08 03:15:13
2 | testing | 2011-03-06 03:15:13
3 | testing | 2011-03-08 03:15:13
And need a query where I return a list of distinct dates in desc order. I tried to formulate a query like so
SELECT DISTINCT CAST(`date_posted` AS DATE) AS dateonly FROM table
This gives me dates but they're not distinct and have duplicates.
Any ideas? (Using php/mysql)
MAJOR EDIT:
Forgot an important piece of information. I'm trying to get unique dates based on month and year.
2011-03-08 03:15:13
2011-03-06 03:15:13
2011-03-02 03:15:13
2011-03-01 03:15:13
2011-02-01 03:15:13
So running the query would only return [2011-03-dd,2011-02-01] (dd being any day)
Apologize for not stating this.