“Postgres inserir no valor da tabela de outra tabela” Respostas de código

PostGresql Inserir selecionar

insert into items_ver(item_id, item_group, name)
select * from items where item_id=2;
YooPita

Postgres Trigger Insert em outra tabela

CREATE TRIGGER trig_copy
     AFTER INSERT ON table1
     FOR EACH ROW
     EXECUTE PROCEDURE function_copy();
Thoughtful Tuatara

Postgres inserir no valor da tabela de outra tabela

##fetch data from other table with sub-query to insert it into another one

INSERT INTO PUBLIC."MyTable"(conversion_job_id, message, last_status)
VALUES (17, 'test', (SELECT status FROM PUBLIC."OtherTable" WHERE id=17))
RETURNING *
Wide-eyed Fox

Respostas semelhantes a “Postgres inserir no valor da tabela de outra tabela”

Procure respostas de código populares por idioma

Procurar outros idiomas de código