I have months stored in SQL Server as 1,2,3,4,...12. I would like to display them as January,February etc. Is there a function in SQL Server like MonthName(1) = January? I a
The easiest way is by calling the function MONTHNAME(your_date). your_date can be a static value or the value from one of your table fields.
MONTHNAME(your_date)