PostgreSQL - Triggers in PostgreSQL
Consider this AFTER INSERT trigger on table 'orders':
If a new row is inserted, what happens first?
CREATE TRIGGER trg_after_insert AFTER INSERT ON orders FOR EACH ROW EXECUTE FUNCTION notify_insert();
If a new row is inserted, what happens first?
