Returns the name of the month from a date.
MONTHNAME( date-expression )
timestamp-expression A TIMESTAMP value.
VARCHAR
The MONTHNAME function returns a string, even if the result is numeric, such as 2 for the month of February.
SQL/2008 Vendor extension.
The following statement returns the value September.
SELECT MONTHNAME( '1998-09-05' );