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

DAY

Example

Return the date’s day of the month.

SELECT DAY(‘2017/08/25’AS DayOfMonth;

Definition and Usage

The DAY() function returns the day of the month (ranging from 1 to 31) for a given date.

Syntax

DAY(date)

Parameter Values

Parameter

Description

date

Required. The date from which to extract the day of the month.

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 day of the month from a given date.

SELECT DAY(‘2017/08/13 09:08’AS DayOfMonth;