HI WELCOME TO SIRIS

FIRST_VALUE function in SQL Server

Leave a Comment

we will discuss FIRST_VALUE function in SQL Server


FIRST_VALUE function 
  • Introduced in SQL Server 2012
  • Retrieves the first value from the specified column
  • ORDER BY clause is required
  • PARTITION BY clause is optional
Syntax : FIRST_VALUE(Column_Name) OVER (ORDER BY Col1, Col2, ...)

FIRST_VALUE function example WITHOUT partitions : In the following example, FIRST_VALUE function returns the name of the lowest paid employee from the entire table.

SELECT Name, Gender, Salary,
FIRST_VALUE(Name) OVER (ORDER BY Salary) AS FirstValue
FROM Employees

first_value function example

FIRST_VALUE function example WITH partitions : In the following example, FIRST_VALUE function returns the name of the lowest paid employee from the respective partition.

SELECT Name, Gender, Salary,
FIRST_VALUE(Name) OVER (PARTITION BY Gender ORDER BY Salary) AS FirstValue
FROM Employees

sql server 2012 first_value function

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.