Mysql date addition Date and Time DATE_ADD () function

Source: Internet
Author: User

The DATE_ADD () function adds a specified interval to a date.

Syntax
The DATE_ADD (date, INTERVAL expr type) date parameter is a valid date expression. The expr parameter is the time interval you want to add.

The type parameter can be of the following values:

Type Value
MICROSECOND
SECOND
MINUTE
HOUR
DAY
WEEK
MONTH
QUARTER
YEAR
SECOND_MICROSECOND
MINUTE_MICROSECOND
MINUTE_SECOND
HOUR_MICROSECOND
HOUR_SECOND
HOUR_MINUTE
DAY_MICROSECOND
DAY_SECOND
DAY_MINUTE
DAY_HOUR
YEAR_MONTH

Instance 1
Plus days
Mysql tutorial> select DATE_ADD (curdate (), INTERVAL 1 DAY );
+ ------------------------------------- +
| DATE_ADD (curdate (), INTERVAL 1 DAY) |
+ ------------------------------------- +
| 2007-07-23 |
+ ------------------------------------- +
1 row in set (0.00 sec)

Plus minutes

Mysql>
Mysql> select DATE_ADD (curdate (), INTERVAL 1 MINUTE );
+ ---------------------------------------- +
| DATE_ADD (curdate (), INTERVAL 1 MINUTE) |
+ ---------------------------------------- +
| 00:01:00 |
+ ---------------------------------------- +
1 row in set (0.00 sec)

Mysql>

Additional years

Mysql>
Mysql> select DATE_ADD (curdate (), INTERVAL 1 YEAR );
+ -------------------------------------- +
| DATE_ADD (curdate (), INTERVAL 1 YEAR) |
+ -------------------------------------- +
| 2008-07-22 |
+ -------------------------------------- +
1 row in set (0.00 sec)

Mysql>

When I was a child

Mysql>
Mysql> select DATE_ADD (curdate (), INTERVAL 1 HOUR );
+ -------------------------------------- +
| DATE_ADD (curdate (), INTERVAL 1 HOUR) |
+ -------------------------------------- +
| 01:00:00 |
+ -------------------------------------- +
1 row in set (0.00 sec)

Mysql>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.