MySQL date_sub () function

Source: Internet
Author: User
Document directory
  • Syntax
MySQL date_sub () function

MySQL date function

Definition and usage

The date_sub () function minus the specified time interval from date.

Syntax
DATE_SUB(date,INTERVAL expr type)

DateA parameter is a valid date expression.ExprThe 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

Suppose we have the following table:

Orderid Productname Orderdate
1 'Computer' 16:25:46. 635

Now, we want to subtract 2 days from "orderdate.

We use the following SELECT statement:

SELECT OrderId,DATE_SUB(OrderDate,INTERVAL 2 DAY) AS OrderPayDateFROM Orders

Result:

Orderid Orderpaydate
1 2008-12-27 16:25:46. 635

MySQL date function

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.