目录

SQL服务器 DATEADD() 函数

示例

为日期添加一年,然后返回日期:

SELECT DATEADD(year, 1, '2017/08/25') AS DateAdd;
亲自试一试 »

定义和用法

DATEADD() 函数将时间/日期间隔添加到日期,然后返回日期。

语法

DATEADD( interval, number, date)

参数值

Parameter Description
interval Required. The time/date interval to add. Can be one of the following values:
  • year, yyyy, yy = Year
  • quarter, qq, q = Quarter
  • month, mm, m = month
  • dayofyear, dy, y = Day of the year
  • day, dd, d = Day
  • week, ww, wk = Week
  • weekday, dw, w = Weekday
  • hour, hh = hour
  • minute, mi, n = Minute
  • second, ss, s = Second
  • millisecond, ms = Millisecond
number Required. The number of interval 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 that will be modified

技术细节

工作于: SQL Server(从 2008 年开始)、Azure SQL 数据库、Azure SQL 数据仓库、并行数据仓库

更多示例

示例

向日期添加两个月,然后返回日期:

SELECT DATEADD(month, 2, '2017/08/25') AS DateAdd;
亲自试一试 »

示例

从日期减去两个月,然后返回日期:

SELECT DATEADD(month, -2, '2017/08/25') AS DateAdd;
亲自试一试 »

示例

在 BirthDate 列中的日期上添加 18 年,然后返回日期:

SELECT LastName, BirthDate, DATEADD(year, 18, BirthDate) AS DateAdd FROM Employees;
亲自试一试 »