MySQL question →[More:]I need to return the results from a SELECT sorted twice, but I'm not sure how to do it correctly.
First it needs to be ordered by month, so it would list all of the September entries before the October entries. Then, it would need to sort them by date, so within the September entries the 13th would come before the 26th...
I've got the first part done...
ORDER BY `eventtable`.`month_of_event` ASC