Answers for "how to change what table a insert would insert with a trigger postgresql"

SQL
1

postgres trigger insert into another table

CREATE OR REPLACE FUNCTION function_copy() RETURNS TRIGGER AS
$BODY$
BEGIN
    INSERT INTO
        table2(id,name)
        VALUES(new.id,new.name);

           RETURN new;
END;
$BODY$
language plpgsql;
Posted by: Guest on August-22-2020
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 "how to change what table a insert would insert with a trigger postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language