Voici un exemple minimal de mon problème réel:
create table t(id serial primary key, rnd double precision);
bien sûr, vous pouvez renvoyer les colonnes insérées avec une returning
clause:
with w as (insert into t(rnd) values(random()) returning *)
insert into t(rnd) select random() from w returning *;
/*
| ID | RND |
|----|----------------|
| 9 | 0.203221440315 |
*/
vous pouvez également retourner un littéral:
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 |
*/
mais vous ne pouvez pas renvoyer les colonnes source:
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
*/
Existe-t-il un moyen de w.rnd
sortir de la returning
clause finale ?
db <> violon ici
UPDATE
dans cette réponse connexe sur SO , mais cela ne fonctionnera pas INSERT
.