MS AccessDateAdd() Function
Definition and Usage
The DateAdd() function adds a time/date interval to a date and then returns the date.
Syntax
DateAdd(interval,number,date)
Parameter Values
| Parameter | Description |
|---|---|
| interval | Required. The time/date interval to add. Can be one of the following values:
|
| number | Required. The number ofinterval 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 |
Technical Details
| Works in: | From Access 2000 |
|---|
More Examples
Example
Add 6 months to the employees' birth date:
SELECT LastName, DateAdd("m", 6, BirthDate) FROM Employees;
Try it Yourself »
