T Sql 简明教程
T-SQL - Date Functions
以下是 MS SQL Server 中的日期函数列表。
Following is the list of date functions in MS SQL Server.
DATEPART()
它将返回日期或时间的局部。
It will return the part of date or time.
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.