I have a query that returns months 1-12. (INT)
Is there a way to order the results starting on this month desc?
Example
3 4 5 6 7 8 9 10 11 12 1
Similar to Brad's answer, add a year column, then
... ORDER BY year, month
Use ASCending or DESCending sort modifiers depending on exactly what you want to do.