PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Posso utilizzare il valore di ritorno di INSERT... RETURNING in un altro INSERT?

Puoi farlo a partire da Postgres 9.1:

with rows as (
INSERT INTO Table1 (name) VALUES ('a_title') RETURNING id
)
INSERT INTO Table2 (val)
SELECT id
FROM rows

Nel frattempo, se sei interessato solo all'id, puoi farlo con un trigger:

create function t1_ins_into_t2()
  returns trigger
as $$
begin
  insert into table2 (val) values (new.id);
  return new;
end;
$$ language plpgsql;

create trigger t1_ins_into_t2
  after insert on table1
for each row
execute procedure t1_ins_into_t2();