I have a field in my table with a bunch of numbers like this:
1
2
3
etc...
instead of the column outputting numbers I would like it to be full month names like this:
January
Feburary
March
etc...
Would anyone be able to help?
I have a field in my table with a bunch of numbers like this:
1
2
3
etc...
instead of the column outputting numbers I would like it to be full month names like this:
January
Feburary
March
etc...
Would anyone be able to help?
use datename
with increment as your column value
select DATENAME(month, DATEADD(month,column,0) -1)
from Table1