I have rows in a table that I need to order by date. Easy enough, use the date datatype to store them, ORDER BY date blah blah.
date
ORDER BY
However, I\
Try this
SELECT DATE_FORMAT(`date`,'%M %Y') AS showdate FROM table
Use this site http://www.mysqlformatdate.com/ to get the (mysql) date format you want