Hi,
If I ran the following query it gives me the month name in Alapabetical order like
SELECT Distinct useMonthName FROM dbo.Summary
Apr
Feb
Jan
Jul
I have a column name useYear and useMonth (1,2,3). I still want to use distinct MonthName but want my results to be sorted by useMonth (1,2,3) instead of alphabetical sorting.
Please help
Thanks
Shafiq
If I ran the following query it gives me the month name in Alapabetical order like
SELECT Distinct useMonthName FROM dbo.Summary
Apr
Feb
Jan
Jul
I have a column name useYear and useMonth (1,2,3). I still want to use distinct MonthName but want my results to be sorted by useMonth (1,2,3) instead of alphabetical sorting.
Please help
Thanks
Shafiq