Ecco un esempio minimo del mio problema nel mondo reale:
create table t(id serial primary key, rnd double precision);
ovviamente puoi restituire le colonne inserite con una returning
clausola:
with w as (insert into t(rnd) values(random()) returning *)
insert into t(rnd) select random() from w returning *;
/*
| ID | RND |
|----|----------------|
| 9 | 0.203221440315 |
*/
puoi anche restituire un valore letterale:
with w as (insert into t(rnd) values(random()) returning *)
insert into t(rnd) select random() from w returning *, 1.0 dummy;
/*
| ID | RND | DUMMY |
|----|----------------|-------|
| 11 | 0.594980469905 | 1 |
*/
ma non puoi restituire le colonne di origine:
with w as (insert into t(rnd) values(random()) returning *)
insert into t(rnd) select random() from w returning *, w.rnd;
/*
ERROR: missing FROM-clause entry for table "w": with w as (insert into t(rnd) values(random()) returning *) insert into t(rnd) select random() from w returning *, w.rnd
*/
Esiste un modo per uscire w.rnd
dalla returning
clausola finale ?
db <> violino qui
UPDATE
questa risposta correlata su SO , ma per questo non funzionerà INSERT
.