SQL Server DAY() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

SQL Server DAY() Function

❮ SQL Server Functions

Example

Return the day of the month (from 1 to 31) for a given date:

SELECT DAY('2017/08/25') AS DayOfMonth;
Try it Yourself »

Definition and Usage

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

Syntax

DAY(date)

Parameter Values

Parameter Description
date Required. The date to return the day of the month from

Technical Details

Works in: SQL Server 2014, SQL Server 2012, SQL Server 2008 R2, SQL Server 2008, SQL Server 2005

More Examples

Example

Return the day of the month (from 1 to 31) for a given date:

SELECT DAY('2017/08/13 09:08') AS DayOfMonth;
Try it Yourself »

❮ SQL Server Functions