Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

MonthName

Example

Retrieve the name of the month corresponding to a numeric value.

SELECT MonthName(3);

Definition and Usage

The MonthName() function retrieves the name of the month corresponding to a specified numeric value.

Syntax

MonthName(numberabbreviate)

Parameter Values

Parameter

Description

number

Required. A numeric value ranging from 1 to 12, representing the month.

abbreviate

Optional. A Boolean parameter where:

  • True indicates the month name should be abbreviated.
  • False (default) indicates the month name should not be abbreviated.

Technical Details

WORKS IN

From Access 2000

More Examples

Example

Retrieve the abbreviated name of the month corresponding to a numeric value.

SELECT WeekdayName(3, true);