📜  SQL Server 中的 DATENAME()函数

📅  最后修改于: 2022-05-13 01:55:41.938000             🧑  作者: Mango

SQL Server 中的 DATENAME()函数

日期名称()函数:

SQL Server 中的此函数用于查找指定日期的给定部分。此外,它将输出值作为字符串返回。

特征 :

  • 此函数用于查找指定日期的给定部分。
  • 此函数属于日期函数。
  • 该函数接受两个参数,即间隔和日期。
  • 此函数还可以在日期部分包含时间。
  • 此函数以字符串形式返回输出。

句法 :

DATENAME(interval, date)

范围 :

此方法接受两个参数,如下所示。

  • 间隔——它是要返回的指定部分。此外,区间的值可以如下给出。
year, yyyy, yy   = Year, which is the specified year.
quarter, qq, q   = Quarter, which is the specified quarter.
month, mm, m     = month, which is the specified month.
dayofyear, dy, y = Day of the year, which is the specified day of the year.
day, dd, d       = Day, which is the specified day.
week, ww, wk     = Week, which is the specified week.
weekday, dw, w   = Weekday, which is the specified week day.
hour, hh         = hour, which is the specified hour.
minute, mi, n    = Minute, which is the specified minute.
second, ss, s    = Second, which is the specified second.
millisecond, ms  = Millisecond, which is the specified millisecond.
  • date –这是要使用的指定日期。

回报:

它返回指定日期的给定部分。

示例-1:

使用 DATENAME()函数并获取指定日期的年份部分。

SELECT DATENAME(year, '2021/01/06');

输出 :

2021

示例 2 :

使用 DATENAME()函数并获取指定日期的月份部分。

SELECT DATENAME(month, '2021/01/06');

输出 :

January

示例 3 :

使用 DATENAME()函数并获取指定日期的日期部分。

SELECT DATENAME(day, '2021/01/06');

输出 :

6

示例 4:

使用 DATENAME()函数并获取指定日期的小时部分,其中也包括时间。

SELECT DATENAME(hour, '2021/01/06 05:30');

输出 :

5

示例 5:

使用 DATENAME()函数并使用变量获取指定日期的第二部分,其中包括时间。

DECLARE @date VARCHAR(50);
SET @date = '2019/06/05 07:37:54';
SELECT DATENAME(second, @date);

输出 :

54

应用 :

此函数用于查找指定日期的给定部分。