“Insertar postgrres en el valor de la tabla de otra tabla” Código de respuesta

PostgreSQL Insertar Seleccione

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

insertar el activador de postes en otra tabla

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

Insertar postgrres en el valor de la tabla de otra tabla

##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

Respuestas similares a “Insertar postgrres en el valor de la tabla de otra tabla”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código