ROW_NUMBER()

Pranav Bakare - Sep 26 - - Dev Community

ROW_NUMBER -

Always provides a unique number to each row, regardless of ties. It does not consider any rank gaps.

SELECT 
EMPLOYEE_ID, DEPARTMENT_ID, SALARY ,
ROW_NUMBER() OVER (PARTITION BY DEPARTMENT_ID Order by salary desc) 
as ROW_NUMBER_DETAILS
FROM employees1;
Enter fullscreen mode Exit fullscreen mode

Image description


Image description

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player