Questo può essere fatto usando un CTE di modifica dei dati (espressione di tabella comune):
with updated as (
UPDATE employees
SET name = 'John'
RETURNING *
)
select *
from updated
ORDER BY empname ASC;
Questo può essere fatto usando un CTE di modifica dei dati (espressione di tabella comune):
with updated as (
UPDATE employees
SET name = 'John'
RETURNING *
)
select *
from updated
ORDER BY empname ASC;