Answers for "postgres trigger to insert into another table"

SQL
1

postgres trigger insert into another table

CREATE TRIGGER trig_copy
     AFTER INSERT ON table1
     FOR EACH ROW
     EXECUTE PROCEDURE function_copy();
Posted by: Guest on August-22-2020

Code answers related to "postgres trigger to insert into another table"

Code answers related to "SQL"

Browse Popular Code Answers by Language