Add one year to a date, then return the date:
SELECT DATEADD(year, 1, '2017/08/25') AS DateAdd;
Try it Yourself »
The DATEADD() function adds a time/date interval to a date and then returns the date.
DATEADD(
interval,
number,
date)
Parameter | Description |
---|---|
interval | Required. The time/date interval to add. Can be one of the following values:
|
number | Required. The number of interval to add to date. Can be positive (to get dates in the future) or negative (to get dates in the past) |
date | Required. The date that will be modified |
Works in: | SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse |
---|
Add two months to a date, then return the date:
SELECT DATEADD(month, 2, '2017/08/25') AS DateAdd;
Try it Yourself »
Subtract two months from a date, then return the date:
SELECT DATEADD(month, -2, '2017/08/25') AS DateAdd;
Try it Yourself »
Add 18 years to the date in the BirthDate column, then return the date:
SELECT LastName, BirthDate, DATEADD(year, 18, BirthDate) AS DateAdd FROM Employees;
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!