Postgresql вставьте Select
insert into items_ver(item_id, item_group, name)
select * from items where item_id=2;
YooPita
insert into items_ver(item_id, item_group, name)
select * from items where item_id=2;
CREATE TRIGGER trig_copy
AFTER INSERT ON table1
FOR EACH ROW
EXECUTE PROCEDURE function_copy();
##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 *