Add two years to a specified date:
SELECT DateAdd("yyyy", 2, #22/11/2017#);
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 to which the interval should be added |
Works in: | From Access 2000 |
---|
Add one year to the current system date:
SELECT DateAdd("yyyy", 1, Date());
Try it Yourself »
Add 6 months to the employees' birth date:
SELECT LastName, DateAdd("m", 6, BirthDate) FROM Employees;
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!