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
No comments:
Post a Comment