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

MONTH

Example

Provide the segment of a date representing the month.

SELECT MONTH(‘2017/08/25’AS Month;

Definition and Usage

The MONTH() function retrieves the numeric representation of the month from a given date, ranging from 1 to 12.

Syntax

MONTH(date)

Parameter Values

Parameter

Description

date

Mandatory. The date or datetime from which the month is to be extracted.

Technical Details

Return type:

int

Works in:

 SQL Server (from 2008 onward), Azure SQL Database, Azure SQL Data Warehouse, and Parallel Data Warehouse

More Examples

Example

Retrieve the numerical month component from a date.

SELECT MONTH(‘2017/05/25 09:08’AS Month;