Viewing post 1 (of 1 total)
Function MonthNamex(@mm numeric (2))
as
select case when @mm not between 1 and 12 then 'Invalid Month' else datename(mm,str(@mm)+'/04/2011') end
February 21, 2011 at 7:53 am
#1289431