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
You can add a year in there for sort purposes. Make them output something like:
2010-03 2010-04 ... 2011-01 2011-02
Pseduo code:
WHERE year >= 2010 AND month >= 3
Not sure what your query is or the data backing it though.