Add 10 days to a date and return the date:
SELECT ADDDATE("2017-06-15", INTERVAL 10 DAY);
Try it Yourself »
The ADDDATE() function adds a time/date interval to a date and then returns the date.
ADDDATE(
date, INTERVAL
value addunit)
OR:
ADDDATE(
date,
days)
Parameter | Description |
---|---|
date | Required. The date to be modified |
days | Required. The number of days to add to date |
value | Required. The value of the time/date interval to add. Both positive and negative values are allowed |
addunit | Required. The type of interval to add. Can be one of the following values:
|
Works in: | From MySQL 4.0 |
---|
Add 15 minutes to a date and return the date:
SELECT ADDDATE("2017-06-15 09:34:21", INTERVAL 15 MINUTE);
Try it Yourself »
Subtract 3 hours to a date and return the date:
SELECT ADDDATE("2017-06-15 09:34:21", INTERVAL -3 HOUR);
Try it Yourself »
Subtract 2 months to a date and return the date:
SELECT ADDDATE("2017-06-15", INTERVAL -2 MONTH);
Try it Yourself »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!