A table exists which stores month name in the form of string.. I want to order by year and month so as to get proper result.
year(string) Month(string) data
------------ ------------ ----
2012 August bigbox
2012 December samllbox
2013 April samll box
2012 September larg
I want to order by year and month. as in 2012,2013... Jan,feb,march....
I am aware of the method of case statement when Month = 'january' THEN 1 Month - FEB THEN 2
But i do'nt want to use this as the procedure will be too big..