DECLARE @monthNum int;
SET @monthNum = 7;
SELECT DateName( month , DateAdd( month , @MonthNum - 1 , '1900-01-01' ))
as 'MonthName'
WHERE @monthNum between 1 and 12
OUTPUT

In order to get the MonthName of the current date, just use
SELECT DATENAME(month, GETDATE()) AS 'MonthName'
OUTPUT
Did you like this post?
|
|
|
||
|
|
|
|
|
|
|
subscribe via rss |
|
subscribe via e-mail |
|
|
print this post |
|
follow me on twitter |




comments
0 Responses to "SQL Server - Convert Month Number to Month Name"Post a Comment