PostgreSQL - Window Functions in PostgreSQL
Consider this query:
What does the
SELECT employee, salary, RANK() OVER w AS rank FROM employees WINDOW w AS (ORDER BY salary DESC)
What does the
rank column represent?