I'm around 70% sure this is doable, I seem to remember I did something similar a few years ago, but have since forgotten how to do it (if I ever did).
Basically, I have a table in MySQL with an 'uploaded_date' field.
The format of the date is D/M/YYYY
I know how to group and order by the date, however I'd like to return the date as a month name. For example:
September:
- Result
- Result
- Result
October:
- Result
- Result
- Result
Etc..
Is there an easy way to do this in a MySQL query?