I am having problems reading code like
SELECT
employeeID as ID,
RANK() OVER (ORDER BY AVG (Salary) DESC) AS Value
FROM Salaries
which supposedly gets the average salary of every employees
My understanding is the code should be
SELECT
employeeID as ID,
RANK() OVER (Partition By employeeID ORDER BY AVG (Salary) DESC) AS Value
FROM Salaries
but the above code works just fine?
First one is not working for me (returning Msg 8120 Column 'Salaries.employeeID' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause), until I add
group by employeeID
:Perhaps, for better understanding, it can be rewritten equivalently as:
In this case, average salary by employee is calculated in the CTE, and then query is extended with ranking column
Value
. Addingpartition by employeeID
to over clause:will lead to
Value = 1
for every row in the result set (which is not what seem attempted to be achieved), because ofrank()
will reset numbering to 1 for each distinctemployeeID
, andemployeeID
is distinct in every row, since data was aggregated by this column prior to ranking.