PostgreSQL - Set Operations and Advanced Queries
Given the table
What will be the output of:
employees(id INT, salary INT) with rows:(1, 5000), (2, 6000), (3, 7000)What will be the output of:
UPDATE employees SET salary = salary + 500 WHERE id <= 2 RETURNING id, salary;