Managing triggers in PostgreSQL
In the previous section, we talked about rules. In this section, we will talk about triggers, what they are, and how to use them. We need to start by understanding what triggers are; if we understand what rules are, this should be simple. In the previous section, we defined rules as simple event handlers; now we can define triggers as complex event handlers. For triggers, as for rules, there are NEW
and OLD
records, which assume the same meaning for triggers as they did for rules. For triggers, the manageable events are INSERT
/DELETE
/UPDATE
and TRUNCATE
. Another difference between rules and triggers is that with triggers, it is possible to handle INSERT
/UPDATE
/DELETE
and TRUNCATE
events before they happen or after they have happened. With triggers, we can also use the INSTEAD OF
option, but only on views.
So, we can manage the following events:
BEFORE INSERT
/UPDATE
/DELETE
/TRUNCATE
AFTER INSERT
/UPDATE
/DELETE
/TRUNCATE
INSTEAD...