Return a specified part of a date:
SELECT DATEPART(year, '2017/08/25') AS DatePartInt;
Try it Yourself »
The DATEPART() function returns a specified part of a date.
This function returns the result as an integer value.
DATEPART(
interval,
date)
Parameter | Description |
---|---|
interval | Required. The part of the date argument to return. Can be one of the following values:
|
date | Required. The date to use. Can be one of the following data types: date, datetime, datetimeoffset, datetime2, smalldatetime, or time |
Works in: | SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse |
---|
Return a specified part of a date:
SELECT DATEPART(yy, '2017/08/25') AS DatePartInt;
Try it Yourself »
Return a specified part of a date:
SELECT DATEPART(month, '2017/08/25') AS DatePartInt;
Try it Yourself »
Return a specified part of a date:
SELECT DATEPART(hour, '2017/08/25 08:36') AS DatePartInt;
Try it Yourself »
Return a specified part of a date:
SELECT DATEPART(minute, '2017/08/25 08:36') AS DatePartInt;
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!