T Sql 简明教程

T-SQL - Date Functions

以下是 MS SQL Server 中的日期函数列表。

Following is the list of date functions in MS SQL Server.

GETDATE()

它将返回当前日期和时间。

It will return the current date along with time.

Syntax

上述函数的语法 -

Syntax for the above function −

GETDATE()

Example

以下查询将返回 MS SQL Server 中的当前日期和时间。

The following query will return the current date along with time in MS SQL Server.

Select getdate() as currentdatetime

DATEPART()

它将返回日期或时间的局部。

It will return the part of date or time.

Syntax

上述函数的语法 -

Syntax for the above function −

DATEPART(datepart, datecolumnname)

Example

Example 1 - 以下查询将返回 MS SQL Server 中的当前日期局部。

Example 1 − The following query will return the part of current date in MS SQL Server.

Select datepart(day, getdate()) as currentdate

Example 2 - 以下查询将返回 MS SQL Server 中的当前月份局部。

Example 2 − The following query will return the part of current month in MS SQL Server.

Select datepart(month, getdate()) as currentmonth

DATEADD()

它将通过添加或减去日期和时间间隔来显示日期和时间。

It will display the date and time by add or subtract date and time interval.

Syntax

上述函数的语法 -

Syntax for the above function −

DATEADD(datepart, number, datecolumnname)

Example

以下查询将返回 MS SQL Server 中从当前日期和时间算起 10 天后的日期和时间。

The following query will return the after 10 days date and time from the current date and time in MS SQL Server.

Select dateadd(day, 10, getdate()) as after10daysdatetimefromcurrentdatetime

DATEDIFF()

它将显示两个日期之间的日期和时间。

It will display the date and time between two dates.

Syntax

上述函数的语法 -

Syntax for the above function −

DATEDIFF(datepart, startdate, enddate)

Example

以下查询将返回 MS SQL Server 中 2015-11-16 和 2015-11-11 日期之间的小时差。

The following query will return the difference of hours between 2015-11-16 and 2015-11-11 dates in MS SQL Server.

Select datediff(hour, 2015-11-16, 2015-11-11) as
differencehoursbetween20151116and20151111

CONVERT()

它将以不同的格式显示日期和时间。

It will display the date and time in different formats.

Syntax

上述函数的语法 -

Syntax for the above function −

CONVERT(datatype, expression, style)

Example

以下查询将以不同的格式返回 MS SQL Server 中的日期和时间。

The following queries will return the date and time in different format in MS SQL Server.

SELECT CONVERT(VARCHAR(19),GETDATE())
SELECT CONVERT(VARCHAR(10),GETDATE(),10)
SELECT CONVERT(VARCHAR(10),GETDATE(),110)