The SQL Server DATEADD () function adds or subtracts a specified time interval from a date

Source: Internet
Author: User

Definition and usage

The DATEADD () function adds or subtracts a specified time interval from a date.

Grammar
DATEADD (datepart,number, date)

The date parameter is a valid day expression. The number is the number of intervals you want to add, and for the future time, this is positive, and for the past time, this number is negative.

The datepart parameter can be the following value:

DatePart Abbreviations
Years (year) YY, yyyy
Quarter (Quarter) QQ, Q
Monthly (month) MM, M
Day of the Year (DayOfYear) Dy, y
Days (Day) DD, D
Week (week) WK, WW
Week (weekday) DW, W
Hours (hour) hh
Minutes (minute) MI, n
Seconds (second) SS, S
Milliseconds (millisecond) Ms
Subtlety (microsecond) MCs
nanoseconds (nanosecond) Ns

Instance

Suppose we have the following "Orders" table:

OrderId ProductName OrderDate
1 ' Computer ' 2008-12-29 16:25:46.635

Now, we want to add 2 days to "OrderDate" so we can find the payment date.

We use the following SELECT statement:

SELECT OrderId,DATEADD(Day,2 as orderpaydate from Orders

Results:

OrderId orderpaydate
1 2008-12-31 16:25:46.635

The SQL Server DATEADD () function adds or subtracts a specified time interval from a date

Related Article

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.