Hi my table structure is like this
year month name
2015 1 adc
2015 2 adc
2015 4 adc
2015 5 adc
2015 6 adc
2015 7 adc
2015 8 adc
2015 9 adc
2015 10 adc
2015 11 adc
2015 12 adc
2016 1 adc
2016 2 adc
2016 3 adc
I want to sort my query result always starting from month 4 of the year and end with month 3 of next year.for example if I want data of Year 2015 it should be like
2015 4 adc
2015 5 adc
2015 6 adc
2015 7 adc
2015 8 adc
2015 9 adc
2015 10 adc
2015 11 adc
2015 12 adc
2016 1 adc
2016 2 adc
2016 3 adc
can i do this with SQL query? here i need to increase the year also after month 12