function that gets the name of the month of a date in sql server code example
Example: sql get month name
SELECT GETDATE() 'Today', FORMAT(GETDATE(),'MMMM') 'Month Name'
SELECT GETDATE() 'Today', FORMAT(GETDATE(),'MMMM') 'Month Name'