Sure! Change your DB column type to DATE 😉 Then there's nothing really more to do.
One thing you could also do is select a column that changes your date field to a unix timestamp, and sort by that.
SELECT *, UNIX_TIMESTAMP(`date_field`) AS `date_field`
FROM `tablename`
ORDER BY `date_field` DESC