5 ms·
Speaking of postgres, you don't even need a function, you can just use RETURNING clause of a modifying query to provide data source for the select: select
by flysand7 1y ago
Speaking of postgres, you don't even need a function, you can just use RETURNING clause of a modifying query to provide data source for the select:
select *
from (
delete
from users
returning id
)