2 .\" Title: CREATE TRIGGER
3 .\" Author: The PostgreSQL Global Development Group
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
6 .\" Manual: PostgreSQL 18.0 Documentation
7 .\" Source: PostgreSQL 18.0
10 .TH "CREATE TRIGGER" "7" "2025" "PostgreSQL 18.0" "PostgreSQL 18.0 Documentation"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 CREATE_TRIGGER \- define a new trigger
35 CREATE [ OR REPLACE ] [ CONSTRAINT ] TRIGGER \fIname\fR { BEFORE | AFTER | INSTEAD OF } { \fIevent\fR [ OR \&.\&.\&. ] }
37 [ FROM \fIreferenced_table_name\fR ]
38 [ NOT DEFERRABLE | [ DEFERRABLE ] [ INITIALLY IMMEDIATE | INITIALLY DEFERRED ] ]
39 [ REFERENCING { { OLD | NEW } TABLE [ AS ] \fItransition_relation_name\fR } [ \&.\&.\&. ] ]
40 [ FOR [ EACH ] { ROW | STATEMENT } ]
41 [ WHEN ( \fIcondition\fR ) ]
42 EXECUTE { FUNCTION | PROCEDURE } \fIfunction_name\fR ( \fIarguments\fR )
44 where \fIevent\fR can be one of:
47 UPDATE [ OF \fIcolumn_name\fR [, \&.\&.\&. ] ]
54 creates a new trigger\&.
55 \fBCREATE OR REPLACE TRIGGER\fR
56 will either create a new trigger, or replace an existing trigger\&. The trigger will be associated with the specified table, view, or foreign table and will execute the specified function
58 when certain operations are performed on that table\&.
60 To replace the current definition of an existing trigger, use
61 \fBCREATE OR REPLACE TRIGGER\fR, specifying the existing trigger\*(Aqs name and parent table\&. All other properties are replaced\&.
63 The trigger can be specified to fire before the operation is attempted on a row (before constraints are checked and the
67 is attempted); or after the operation has completed (after constraints are checked and the
71 has completed); or instead of the operation (in the case of inserts, updates or deletes on a view)\&. If the trigger fires before or instead of the event, the trigger can skip the operation for the current row, or change the row being inserted (for
75 operations only)\&. If the trigger fires after the event, all changes, including the effects of other triggers, are
79 A trigger that is marked
81 is called once for every row that the operation modifies\&. For example, a
83 that affects 10 rows will cause any
85 triggers on the target relation to be called 10 separate times, once for each deleted row\&. In contrast, a trigger that is marked
87 only executes once for any given operation, regardless of how many rows it modifies (in particular, an operation that modifies zero rows will still result in the execution of any applicable
91 Triggers that are specified to fire
93 the trigger event must be marked
94 FOR EACH ROW, and can only be defined on views\&.
98 triggers on a view must be marked as
101 In addition, triggers may be defined to fire for
102 \fBTRUNCATE\fR, though only
103 FOR EACH STATEMENT\&.
105 The following table summarizes which types of triggers may be used on tables, views, and foreign tables:
128 \fBINSERT\fR/\fBUPDATE\fR/\fBDELETE\fR
130 Tables and foreign tables
132 Tables, views, and foreign tables
139 Tables and foreign tables
144 \fBINSERT\fR/\fBUPDATE\fR/\fBDELETE\fR
146 Tables and foreign tables
148 Tables, views, and foreign tables
155 Tables and foreign tables
160 \fBINSERT\fR/\fBUPDATE\fR/\fBDELETE\fR
176 Also, a trigger definition can specify a Boolean
178 condition, which will be tested to see whether the trigger should be fired\&. In row\-level triggers the
180 condition can examine the old and/or new values of columns of the row\&. Statement\-level triggers can also have
182 conditions, although the feature is not so useful for them since the condition cannot refer to any values in the table\&.
184 If multiple triggers of the same kind are defined for the same event, they will be fired in alphabetical order by name\&.
188 option is specified, this command creates a
189 constraint trigger\&.
190 This is the same as a regular trigger except that the timing of the trigger firing can be adjusted using
191 \fBSET CONSTRAINTS\fR\&. Constraint triggers must be
193 triggers on plain tables (not foreign tables)\&. They can be fired either at the end of the statement causing the triggering event, or at the end of the containing transaction; in the latter case they are said to be
194 deferred\&. A pending deferred\-trigger firing can also be forced to happen immediately by using
195 \fBSET CONSTRAINTS\fR\&. Constraint triggers are expected to raise an exception when the constraints they implement are violated\&.
199 option enables collection of
200 transition relations, which are row sets that include all of the rows inserted, deleted, or modified by the current SQL statement\&. This feature lets the trigger see a global view of what the statement did, not just one row at a time\&. This option is only allowed for an
202 trigger on a plain table (not a foreign table)\&. The trigger should not be a constraint trigger\&. Also, if the trigger is an
204 trigger, it must not specify a
206 list when using this option\&.
208 may only be specified once, and only for a trigger that can fire on
211 DELETE; it creates a transition relation containing the
213 of all rows updated or deleted by the statement\&. Similarly,
215 may only be specified once, and only for a trigger that can fire on
218 INSERT; it creates a transition relation containing the
220 of all rows updated or inserted by the statement\&.
223 does not modify any rows so you cannot create
225 triggers\&. Rules and views may provide workable solutions to problems that seem to need
231 for more information about triggers\&.
236 The name to give the new trigger\&. This must be distinct from the name of any other trigger for the same table\&. The name cannot be schema\-qualified \(em the trigger inherits the schema of its table\&. For a constraint trigger, this is also the name to use when modifying the trigger\*(Aqs behavior using
237 \fBSET CONSTRAINTS\fR\&.
246 Determines whether the function is called before, after, or instead of the event\&. A constraint trigger can only be specified as
256 TRUNCATE; this specifies the event that will fire the trigger\&. Multiple events can be specified using
257 OR, except when transition relations are requested\&.
261 events, it is possible to specify a list of columns using this syntax:
267 UPDATE OF \fIcolumn_name1\fR [, \fIcolumn_name2\fR \&.\&.\&. ]
273 The trigger will only fire if at least one of the listed columns is mentioned as a target of the
275 command or if one of the listed columns is a generated column that depends on a column that is the target of the
279 events do not allow a list of columns\&. A column list cannot be specified when requesting transition relations, either\&.
284 The name (optionally schema\-qualified) of the table, view, or foreign table the trigger is for\&.
287 \fIreferenced_table_name\fR
289 The (possibly schema\-qualified) name of another table referenced by the constraint\&. This option is used for foreign\-key constraints and is not recommended for general use\&. This can only be specified for constraint triggers\&.
300 The default timing of the trigger\&. See the
301 CREATE TABLE (\fBCREATE_TABLE\fR(7))
302 documentation for details of these constraint options\&. This can only be specified for constraint triggers\&.
307 This keyword immediately precedes the declaration of one or two relation names that provide access to the transition relations of the triggering statement\&.
314 This clause indicates whether the following relation name is for the before\-image transition relation or the after\-image transition relation\&.
317 \fItransition_relation_name\fR
319 The (unqualified) name to be used within the trigger for this transition relation\&.
326 This specifies whether the trigger function should be fired once for every row affected by the trigger event, or just once per SQL statement\&. If neither is specified,
328 is the default\&. Constraint triggers can only be specified
334 A Boolean expression that determines whether the trigger function will actually be executed\&. If
336 is specified, the function will only be called if the
343 condition can refer to columns of the old and/or new row values by writing
344 OLD\&.\fIcolumn_name\fR
346 NEW\&.\fIcolumn_name\fR
347 respectively\&. Of course,
349 triggers cannot refer to
353 triggers cannot refer to
357 triggers do not support
363 expressions cannot contain subqueries\&.
365 Note that for constraint triggers, evaluation of the
367 condition is not deferred, but occurs immediately after the row update operation is performed\&. If the condition does not evaluate to true then the trigger is not queued for deferred execution\&.
372 A user\-supplied function that is declared as taking no arguments and returning type
373 trigger, which is executed when the trigger fires\&.
376 CREATE TRIGGER, the keywords
380 are equivalent, but the referenced function must in any case be a function, not a procedure\&. The use of the keyword
382 here is historical and deprecated\&.
387 An optional comma\-separated list of arguments to be provided to the function when the trigger is executed\&. The arguments are literal string constants\&. Simple names and numeric constants can be written here, too, but they will all be converted to strings\&. Please check the description of the implementation language of the trigger function to find out how these arguments can be accessed within the function; it might be different from normal function arguments\&.
391 To create or replace a trigger on a table, the user must have the
393 privilege on the table\&. The user must also have
395 privilege on the trigger function\&.
399 to remove a trigger\&.
401 Creating a row\-level trigger on a partitioned table will cause an identical
403 trigger to be created on each of its existing partitions; and any partitions created or attached later will have an identical trigger, too\&. If there is a conflictingly\-named trigger on a child partition already, an error occurs unless
404 \fBCREATE OR REPLACE TRIGGER\fR
405 is used, in which case that trigger is replaced with a clone trigger\&. When a partition is detached from its parent, its clone triggers are removed\&.
407 A column\-specific trigger (one defined using the
408 UPDATE OF \fIcolumn_name\fR
409 syntax) will fire when any of its columns are listed as targets in the
413 list\&. It is possible for a column\*(Aqs value to change even when the trigger is not fired, because changes made to the row\*(Aqs contents by
415 triggers are not considered\&. Conversely, a command such as
416 UPDATE \&.\&.\&. SET x = x \&.\&.\&.
417 will fire a trigger on column
418 x, even though the column\*(Aqs value did not change\&.
424 condition is evaluated just before the function is or would be executed, so using
426 is not materially different from testing the same condition at the beginning of the trigger function\&. Note in particular that the
428 row seen by the condition is the current value, as possibly modified by earlier triggers\&. Also, a
432 condition is not allowed to examine the system columns of the
435 ctid), because those won\*(Aqt have been set yet\&.
441 condition is evaluated just after the row update occurs, and it determines whether an event is queued to fire the trigger at the end of statement\&. So when an
445 condition does not return true, it is not necessary to queue an event nor to re\-fetch the row at end of statement\&. This can result in significant speedups in statements that modify many rows, if the trigger only needs to be fired for a few of the rows\&.
447 In some cases it is possible for a single SQL command to fire more than one kind of trigger\&. For instance an
450 ON CONFLICT DO UPDATE
451 clause may cause both insert and update operations, so it will fire both kinds of triggers as needed\&. The transition relations supplied to triggers are specific to their event type; thus an
453 trigger will see only the inserted rows, while an
455 trigger will see only the updated rows\&.
457 Row updates or deletions caused by foreign\-key enforcement actions, such as
460 ON DELETE SET NULL, are treated as part of the SQL command that caused them (note that such actions are never deferred)\&. Relevant triggers on the affected table will be fired, so that this provides another way in which an SQL command might fire triggers not directly matching its type\&. In simple cases, triggers that request transition relations will see all changes caused in their table by a single original SQL command as a single transition relation\&. However, there are cases in which the presence of an
462 trigger that requests transition relations will cause the foreign\-key enforcement actions triggered by a single SQL command to be split into multiple steps, each with its own transition relation(s)\&. In such cases, any statement\-level triggers that are present will be fired once per creation of a transition relation set, ensuring that the triggers see each affected row in a transition relation once and only once\&.
464 Statement\-level triggers on a view are fired only if the action on the view is handled by a row\-level
466 trigger\&. If the action is handled by an
468 rule, then whatever statements are emitted by the rule are executed in place of the original statement naming the view, so that the triggers that will be fired are those on tables named in the replacement statements\&. Similarly, if the view is automatically updatable, then the action is handled by automatically rewriting the statement into an action on the view\*(Aqs base table, so that the base table\*(Aqs statement\-level triggers are the ones that are fired\&.
470 Modifying a partitioned table or a table with inheritance children fires statement\-level triggers attached to the explicitly named table, but not statement\-level triggers for its partitions or child tables\&. In contrast, row\-level triggers are fired on the rows in affected partitions or child tables, even if they are not explicitly named in the query\&. If a statement\-level trigger has been defined with transition relations named by a
472 clause, then before and after images of rows are visible from all affected partitions or child tables\&. In the case of inheritance children, the row images include only columns that are present in the table that the trigger is attached to\&.
474 Currently, row\-level triggers with transition relations cannot be defined on partitions or inheritance child tables\&. Also, triggers on partitioned tables may not be
479 option is not supported for constraint triggers\&.
481 Replacing an existing trigger within a transaction that has already performed updating actions on the trigger\*(Aqs table is not recommended\&. Trigger firing decisions, or portions of firing decisions, that have already been made will not be reconsidered, so the effects could be surprising\&.
483 There are a few built\-in trigger functions that can be used to solve common problems without having to write your own trigger code; see
488 \fBcheck_account_update\fR
489 whenever a row of the table
491 is about to be updated:
497 CREATE TRIGGER check_update
498 BEFORE UPDATE ON accounts
500 EXECUTE FUNCTION check_account_update();
506 Modify that trigger definition to only execute the function if column
508 is specified as a target in the
516 CREATE OR REPLACE TRIGGER check_update
517 BEFORE UPDATE OF balance ON accounts
519 EXECUTE FUNCTION check_account_update();
525 This form only executes the function if column
527 has in fact changed value:
533 CREATE TRIGGER check_update
534 BEFORE UPDATE ON accounts
536 WHEN (OLD\&.balance IS DISTINCT FROM NEW\&.balance)
537 EXECUTE FUNCTION check_account_update();
543 Call a function to log updates of
544 accounts, but only if something changed:
550 CREATE TRIGGER log_update
551 AFTER UPDATE ON accounts
553 WHEN (OLD\&.* IS DISTINCT FROM NEW\&.*)
554 EXECUTE FUNCTION log_account_update();
561 \fBview_insert_row\fR
562 for each row to insert rows into the tables underlying a view:
568 CREATE TRIGGER view_insert
569 INSTEAD OF INSERT ON my_view
571 EXECUTE FUNCTION view_insert_row();
578 \fBcheck_transfer_balances_to_zero\fR
579 for each statement to confirm that the
581 rows offset to a net of zero:
587 CREATE TRIGGER transfer_insert
588 AFTER INSERT ON transfer
589 REFERENCING NEW TABLE AS inserted
591 EXECUTE FUNCTION check_transfer_balances_to_zero();
598 \fBcheck_matching_pairs\fR
599 for each row to confirm that changes are made to matching pairs at the same time (by the same statement):
605 CREATE TRIGGER paired_items_update
606 AFTER UPDATE ON paired_items
607 REFERENCING NEW TABLE AS newtab OLD TABLE AS oldtab
609 EXECUTE FUNCTION check_matching_pairs();
616 contains a complete example of a trigger function written in C\&.
623 implements a subset of the
625 standard\&. The following functionalities are currently missing:
635 While transition table names for
637 triggers are specified using the
639 clause in the standard way, the row variables used in
641 triggers may not be specified in a
643 clause\&. They are available in a manner that is dependent on the language in which the trigger function is written, but is fixed for any one language\&. Some languages effectively behave as though there is a
646 OLD ROW AS OLD NEW ROW AS NEW\&.
657 The standard allows transition tables to be used with column\-specific
659 triggers, but then the set of rows that should be visible in the transition tables depends on the trigger\*(Aqs column list\&. This is not currently implemented by
672 only allows the execution of a user\-defined function for the triggered action\&. The standard allows the execution of a number of other SQL commands, such as
673 \fBCREATE TABLE\fR, as the triggered action\&. This limitation is not hard to work around by creating a user\-defined function that executes the desired commands\&.
676 SQL specifies that multiple triggers should be fired in time\-of\-creation order\&.
678 uses name order, which was judged to be more convenient\&.
682 triggers on cascaded deletes fire
690 to always fire before the delete action, even a cascading one\&. This is considered more consistent\&. There is also nonstandard behavior if
692 triggers modify rows or prevent updates during an update that is caused by a referential action\&. This can lead to constraint violations or stored data that does not honor the referential constraint\&.
694 The ability to specify multiple actions for a single trigger using
698 extension of the SQL standard\&.
700 The ability to fire triggers for
704 extension of the SQL standard, as is the ability to define statement\-level triggers on views\&.
706 \fBCREATE CONSTRAINT TRIGGER\fR
711 standard\&. So is the
715 ALTER TRIGGER (\fBALTER_TRIGGER\fR(7)), DROP TRIGGER (\fBDROP_TRIGGER\fR(7)), CREATE FUNCTION (\fBCREATE_FUNCTION\fR(7)), SET CONSTRAINTS (\fBSET_CONSTRAINTS\fR(7))