PostgreSQL - Window Functions in PostgreSQL
What will be the output of this query?
SELECT employee_id, salary, LEAD(salary, 2) OVER (ORDER BY employee_id) AS salary_after_two FROM employees;
