DATENAME function in SQL Server

This article will show you in detail how to use the DATENAME () datetime processing function in SQL Server with specific syntax and examples to better visualize and capture functions.

Describe

The DATENAME function in SQL Server returns a time value of the input argument, which can be day, month, year, quarter, hour, minute, second, millisecond . The return value is a string type (ASCII)

Syntax

To use the DATENAME function in SQL Server, we use the following syntax:

 DATENAME(dangthoigian, thoigian) 

Parameters :

  1. dangthoigian: the type of time you want. It may be one of the following values:
    Value Explanation year, yyyy, yy Yearquarter, qq, qQuýmonth, mm, mThdaydayofyearDate in daysday, dy, yYdayweek, ww, wkTuwwdayday, dw, w Day of the day, hhGinminute, mi, nPhútsecond, ss, s Millisecond, msMis second
  2. thoigian: the amount of time you want to retrieve a value.

Note :

  1. The DATENAME function returns the result as a string value.
  2. See also the DATEPART function that returns the same result as an integer value.
  3. DATENAME can be used in later versions of SQL Server: SQL Server 2017, SQL Server 2016, SQL Server 2014, SQL Server 2012, SQL Server 2008 R2, SQL Server 2008, and SQL Server 2005.

For example

Take a look and explore some examples of DATENAME functions in SQL Server.

 SELECT DATENAME(year, '2019/04/28'); 
Result: '2019'

SELECT DATENAME(yyyy, '2019/04/28');
Result: '2019'

SELECT DATENAME(yy, '2019/04/28');
Result: '2019'

SELECT DATENAME(month, '2019/04/28');
Result: 'April'

SELECT DATENAME(day, '2019/04/28');
Result: '28'

SELECT DATENAME(quarter, '2019/04/28');
Result: '2'

SELECT DATENAME(hour, '2019/04/28 09:49');
Result: '9'

SELECT DATENAME(minute, '2019/04/28 09:49');
Result: '49'

SELECT DATENAME(second, '2019/04/28 09:49:12');
Result: '12'

SELECT DATENAME(millisecond, '2019/04/28 09:49:12.726');
Result: '726'

Previous article: DATENAME function in SQL Server

Next article: DATEPART function in SQL Server

4 ★ | 1 Vote

May be interested

  • DATEDIFF function in SQL ServerPhoto of DATEDIFF function in SQL Server
    this article will show you in detail how to use sql server's datetime datediff () function with syntax and specific examples to make it easier to visualize and capture functions.
  • DATEADD function in SQL ServerPhoto of DATEADD function in SQL Server
    the dateadd function in sql server returns a new time value when it is added a specified time period.
  • DATEPART function in SQL ServerPhoto of DATEPART function in SQL Server
    the datepart function in sql server returns a time value of the input argument, which can be day, month, year, quarter, hour, minute, second, millisecond ... the return value is an integer type (int)
  • IF commands ... ELSE in SQL ServerPhoto of IF commands ... ELSE in SQL Server
    like other programming languages, sql server also provides users with an if command el .... the article will detail how to use the syntax and clear examples to make it easier for you to imagine if ... else.
  • BREAK (Control Interrupt) command in SQL ServerPhoto of BREAK (Control Interrupt) command in SQL Server
    the break command used to exit the loop does not specify a stop condition or you want to stop the loop on condition that you specify and execute the statements following the loop statement end.
  • CONTINUE command in SQL ServerPhoto of CONTINUE command in SQL Server
    the continue command is used to give command execution authority to the last expression of the loop. that means upside-down to the top of the loop, all the commands that follow in the loop containing continue will be ignored without execution.