I have the following query in a script:
SELECT id, date_format(date, '%M %e, %Y') AS date, entry FROM spd ORDER BY date DESC
Now, this works perfectly -- except, that it sorts alphanumerically ... so that 'March 9, 2003' comes before 'March 11, 2003', instead of after, as intended (thus ORDER BY date DESC).
Does anyone have any ideas about how I might go about fixing this?