|
well i think i see your problem. AS article_date you are sorting by the article_date. i believe the order by clause is using the field name you specify after anything you do with it in the query.
try using AS formated_date and order by article_date desc
|