]> begriffs open source - ai-pg/blob - full-docs/man7/CREATE_TRIGGER.7
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / man7 / CREATE_TRIGGER.7
1 '\" t
2 .\"     Title: CREATE TRIGGER
3 .\"    Author: The PostgreSQL Global Development Group
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2025
6 .\"    Manual: PostgreSQL 18.0 Documentation
7 .\"    Source: PostgreSQL 18.0
8 .\"  Language: English
9 .\"
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 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 CREATE_TRIGGER \- define a new trigger
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 CREATE [ OR REPLACE ] [ CONSTRAINT ] TRIGGER \fIname\fR { BEFORE | AFTER | INSTEAD OF } { \fIevent\fR [ OR \&.\&.\&. ] }
36     ON \fItable_name\fR
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 )
43
44 where \fIevent\fR can be one of:
45
46     INSERT
47     UPDATE [ OF \fIcolumn_name\fR [, \&.\&.\&. ] ]
48     DELETE
49     TRUNCATE
50 .fi
51 .SH "DESCRIPTION"
52 .PP
53 \fBCREATE TRIGGER\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
57 \fIfunction_name\fR
58 when certain operations are performed on that table\&.
59 .PP
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\&.
62 .PP
63 The trigger can be specified to fire before the operation is attempted on a row (before constraints are checked and the
64 \fBINSERT\fR,
65 \fBUPDATE\fR, or
66 \fBDELETE\fR
67 is attempted); or after the operation has completed (after constraints are checked and the
68 \fBINSERT\fR,
69 \fBUPDATE\fR, or
70 \fBDELETE\fR
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
72 \fBINSERT\fR
73 and
74 \fBUPDATE\fR
75 operations only)\&. If the trigger fires after the event, all changes, including the effects of other triggers, are
76 \(lqvisible\(rq
77 to the trigger\&.
78 .PP
79 A trigger that is marked
80 FOR EACH ROW
81 is called once for every row that the operation modifies\&. For example, a
82 \fBDELETE\fR
83 that affects 10 rows will cause any
84 ON DELETE
85 triggers on the target relation to be called 10 separate times, once for each deleted row\&. In contrast, a trigger that is marked
86 FOR EACH STATEMENT
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
88 FOR EACH STATEMENT
89 triggers)\&.
90 .PP
91 Triggers that are specified to fire
92 INSTEAD OF
93 the trigger event must be marked
94 FOR EACH ROW, and can only be defined on views\&.
95 BEFORE
96 and
97 AFTER
98 triggers on a view must be marked as
99 FOR EACH STATEMENT\&.
100 .PP
101 In addition, triggers may be defined to fire for
102 \fBTRUNCATE\fR, though only
103 FOR EACH STATEMENT\&.
104 .PP
105 The following table summarizes which types of triggers may be used on tables, views, and foreign tables:
106 .TS
107 allbox tab(:);
108 lB lB lB lB.
109 T{
110 When
111 T}:T{
112 Event
113 T}:T{
114 Row\-level
115 T}:T{
116 Statement\-level
117 T}
118 .T&
119 c c c c
120 ^ c c c
121 c c c c
122 ^ c c c
123 c c c c
124 ^ c c c.
125 T{
126 BEFORE
127 T}:T{
128 \fBINSERT\fR/\fBUPDATE\fR/\fBDELETE\fR
129 T}:T{
130 Tables and foreign tables
131 T}:T{
132 Tables, views, and foreign tables
133 T}
134 :T{
135 \fBTRUNCATE\fR
136 T}:T{
137 \(em
138 T}:T{
139 Tables and foreign tables
140 T}
141 T{
142 AFTER
143 T}:T{
144 \fBINSERT\fR/\fBUPDATE\fR/\fBDELETE\fR
145 T}:T{
146 Tables and foreign tables
147 T}:T{
148 Tables, views, and foreign tables
149 T}
150 :T{
151 \fBTRUNCATE\fR
152 T}:T{
153 \(em
154 T}:T{
155 Tables and foreign tables
156 T}
157 T{
158 INSTEAD OF
159 T}:T{
160 \fBINSERT\fR/\fBUPDATE\fR/\fBDELETE\fR
161 T}:T{
162 Views
163 T}:T{
164 \(em
165 T}
166 :T{
167 \fBTRUNCATE\fR
168 T}:T{
169 \(em
170 T}:T{
171 \(em
172 T}
173 .TE
174 .sp 1
175 .PP
176 Also, a trigger definition can specify a Boolean
177 WHEN
178 condition, which will be tested to see whether the trigger should be fired\&. In row\-level triggers the
179 WHEN
180 condition can examine the old and/or new values of columns of the row\&. Statement\-level triggers can also have
181 WHEN
182 conditions, although the feature is not so useful for them since the condition cannot refer to any values in the table\&.
183 .PP
184 If multiple triggers of the same kind are defined for the same event, they will be fired in alphabetical order by name\&.
185 .PP
186 When the
187 CONSTRAINT
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
192 AFTER ROW
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\&.
196 .PP
197 The
198 REFERENCING
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
201 AFTER
202 trigger on a plain table (not a foreign table)\&. The trigger should not be a constraint trigger\&. Also, if the trigger is an
203 UPDATE
204 trigger, it must not specify a
205 \fIcolumn_name\fR
206 list when using this option\&.
207 OLD TABLE
208 may only be specified once, and only for a trigger that can fire on
209 UPDATE
210 or
211 DELETE; it creates a transition relation containing the
212 before\-images
213 of all rows updated or deleted by the statement\&. Similarly,
214 NEW TABLE
215 may only be specified once, and only for a trigger that can fire on
216 UPDATE
217 or
218 INSERT; it creates a transition relation containing the
219 after\-images
220 of all rows updated or inserted by the statement\&.
221 .PP
222 \fBSELECT\fR
223 does not modify any rows so you cannot create
224 \fBSELECT\fR
225 triggers\&. Rules and views may provide workable solutions to problems that seem to need
226 \fBSELECT\fR
227 triggers\&.
228 .PP
229 Refer to
230 Chapter\ \&37
231 for more information about triggers\&.
232 .SH "PARAMETERS"
233 .PP
234 \fIname\fR
235 .RS 4
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\&.
238 .RE
239 .PP
240 BEFORE
241 .br
242 AFTER
243 .br
244 INSTEAD OF
245 .RS 4
246 Determines whether the function is called before, after, or instead of the event\&. A constraint trigger can only be specified as
247 AFTER\&.
248 .RE
249 .PP
250 \fIevent\fR
251 .RS 4
252 One of
253 INSERT,
254 UPDATE,
255 DELETE, or
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\&.
258 .sp
259 For
260 UPDATE
261 events, it is possible to specify a list of columns using this syntax:
262 .sp
263 .if n \{\
264 .RS 4
265 .\}
266 .nf
267 UPDATE OF \fIcolumn_name1\fR [, \fIcolumn_name2\fR \&.\&.\&. ]
268 .fi
269 .if n \{\
270 .RE
271 .\}
272 .sp
273 The trigger will only fire if at least one of the listed columns is mentioned as a target of the
274 \fBUPDATE\fR
275 command or if one of the listed columns is a generated column that depends on a column that is the target of the
276 \fBUPDATE\fR\&.
277 .sp
278 INSTEAD OF UPDATE
279 events do not allow a list of columns\&. A column list cannot be specified when requesting transition relations, either\&.
280 .RE
281 .PP
282 \fItable_name\fR
283 .RS 4
284 The name (optionally schema\-qualified) of the table, view, or foreign table the trigger is for\&.
285 .RE
286 .PP
287 \fIreferenced_table_name\fR
288 .RS 4
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\&.
290 .RE
291 .PP
292 DEFERRABLE
293 .br
294 NOT DEFERRABLE
295 .br
296 INITIALLY IMMEDIATE
297 .br
298 INITIALLY DEFERRED
299 .RS 4
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\&.
303 .RE
304 .PP
305 REFERENCING
306 .RS 4
307 This keyword immediately precedes the declaration of one or two relation names that provide access to the transition relations of the triggering statement\&.
308 .RE
309 .PP
310 OLD TABLE
311 .br
312 NEW TABLE
313 .RS 4
314 This clause indicates whether the following relation name is for the before\-image transition relation or the after\-image transition relation\&.
315 .RE
316 .PP
317 \fItransition_relation_name\fR
318 .RS 4
319 The (unqualified) name to be used within the trigger for this transition relation\&.
320 .RE
321 .PP
322 FOR EACH ROW
323 .br
324 FOR EACH STATEMENT
325 .RS 4
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,
327 FOR EACH STATEMENT
328 is the default\&. Constraint triggers can only be specified
329 FOR EACH ROW\&.
330 .RE
331 .PP
332 \fIcondition\fR
333 .RS 4
334 A Boolean expression that determines whether the trigger function will actually be executed\&. If
335 WHEN
336 is specified, the function will only be called if the
337 \fIcondition\fR
338 returns
339 true\&. In
340 FOR EACH ROW
341 triggers, the
342 WHEN
343 condition can refer to columns of the old and/or new row values by writing
344 OLD\&.\fIcolumn_name\fR
345 or
346 NEW\&.\fIcolumn_name\fR
347 respectively\&. Of course,
348 INSERT
349 triggers cannot refer to
350 OLD
351 and
352 DELETE
353 triggers cannot refer to
354 NEW\&.
355 .sp
356 INSTEAD OF
357 triggers do not support
358 WHEN
359 conditions\&.
360 .sp
361 Currently,
362 WHEN
363 expressions cannot contain subqueries\&.
364 .sp
365 Note that for constraint triggers, evaluation of the
366 WHEN
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\&.
368 .RE
369 .PP
370 \fIfunction_name\fR
371 .RS 4
372 A user\-supplied function that is declared as taking no arguments and returning type
373 trigger, which is executed when the trigger fires\&.
374 .sp
375 In the syntax of
376 CREATE TRIGGER, the keywords
377 FUNCTION
378 and
379 PROCEDURE
380 are equivalent, but the referenced function must in any case be a function, not a procedure\&. The use of the keyword
381 PROCEDURE
382 here is historical and deprecated\&.
383 .RE
384 .PP
385 \fIarguments\fR
386 .RS 4
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\&.
388 .RE
389 .SH "NOTES"
390 .PP
391 To create or replace a trigger on a table, the user must have the
392 TRIGGER
393 privilege on the table\&. The user must also have
394 EXECUTE
395 privilege on the trigger function\&.
396 .PP
397 Use
398 \fBDROP TRIGGER\fR
399 to remove a trigger\&.
400 .PP
401 Creating a row\-level trigger on a partitioned table will cause an identical
402 \(lqclone\(rq
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\&.
406 .PP
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
410 \fBUPDATE\fR
411 command\*(Aqs
412 SET
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
414 BEFORE UPDATE
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\&.
419 .PP
420 In a
421 BEFORE
422 trigger, the
423 WHEN
424 condition is evaluated just before the function is or would be executed, so using
425 WHEN
426 is not materially different from testing the same condition at the beginning of the trigger function\&. Note in particular that the
427 NEW
428 row seen by the condition is the current value, as possibly modified by earlier triggers\&. Also, a
429 BEFORE
430 trigger\*(Aqs
431 WHEN
432 condition is not allowed to examine the system columns of the
433 NEW
434 row (such as
435 ctid), because those won\*(Aqt have been set yet\&.
436 .PP
437 In an
438 AFTER
439 trigger, the
440 WHEN
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
442 AFTER
443 trigger\*(Aqs
444 WHEN
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\&.
446 .PP
447 In some cases it is possible for a single SQL command to fire more than one kind of trigger\&. For instance an
448 \fBINSERT\fR
449 with 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
452 \fBINSERT\fR
453 trigger will see only the inserted rows, while an
454 \fBUPDATE\fR
455 trigger will see only the updated rows\&.
456 .PP
457 Row updates or deletions caused by foreign\-key enforcement actions, such as
458 ON UPDATE CASCADE
459 or
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
461 AFTER ROW
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\&.
463 .PP
464 Statement\-level triggers on a view are fired only if the action on the view is handled by a row\-level
465 INSTEAD OF
466 trigger\&. If the action is handled by an
467 INSTEAD
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\&.
469 .PP
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
471 REFERENCING
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\&.
473 .PP
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
475 INSTEAD OF\&.
476 .PP
477 Currently, the
478 OR REPLACE
479 option is not supported for constraint triggers\&.
480 .PP
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\&.
482 .PP
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
484 Section\ \&9.29\&.
485 .SH "EXAMPLES"
486 .PP
487 Execute the function
488 \fBcheck_account_update\fR
489 whenever a row of the table
490 accounts
491 is about to be updated:
492 .sp
493 .if n \{\
494 .RS 4
495 .\}
496 .nf
497 CREATE TRIGGER check_update
498     BEFORE UPDATE ON accounts
499     FOR EACH ROW
500     EXECUTE FUNCTION check_account_update();
501 .fi
502 .if n \{\
503 .RE
504 .\}
505 .sp
506 Modify that trigger definition to only execute the function if column
507 balance
508 is specified as a target in the
509 \fBUPDATE\fR
510 command:
511 .sp
512 .if n \{\
513 .RS 4
514 .\}
515 .nf
516 CREATE OR REPLACE TRIGGER check_update
517     BEFORE UPDATE OF balance ON accounts
518     FOR EACH ROW
519     EXECUTE FUNCTION check_account_update();
520 .fi
521 .if n \{\
522 .RE
523 .\}
524 .sp
525 This form only executes the function if column
526 balance
527 has in fact changed value:
528 .sp
529 .if n \{\
530 .RS 4
531 .\}
532 .nf
533 CREATE TRIGGER check_update
534     BEFORE UPDATE ON accounts
535     FOR EACH ROW
536     WHEN (OLD\&.balance IS DISTINCT FROM NEW\&.balance)
537     EXECUTE FUNCTION check_account_update();
538 .fi
539 .if n \{\
540 .RE
541 .\}
542 .sp
543 Call a function to log updates of
544 accounts, but only if something changed:
545 .sp
546 .if n \{\
547 .RS 4
548 .\}
549 .nf
550 CREATE TRIGGER log_update
551     AFTER UPDATE ON accounts
552     FOR EACH ROW
553     WHEN (OLD\&.* IS DISTINCT FROM NEW\&.*)
554     EXECUTE FUNCTION log_account_update();
555 .fi
556 .if n \{\
557 .RE
558 .\}
559 .sp
560 Execute the function
561 \fBview_insert_row\fR
562 for each row to insert rows into the tables underlying a view:
563 .sp
564 .if n \{\
565 .RS 4
566 .\}
567 .nf
568 CREATE TRIGGER view_insert
569     INSTEAD OF INSERT ON my_view
570     FOR EACH ROW
571     EXECUTE FUNCTION view_insert_row();
572 .fi
573 .if n \{\
574 .RE
575 .\}
576 .sp
577 Execute the function
578 \fBcheck_transfer_balances_to_zero\fR
579 for each statement to confirm that the
580 transfer
581 rows offset to a net of zero:
582 .sp
583 .if n \{\
584 .RS 4
585 .\}
586 .nf
587 CREATE TRIGGER transfer_insert
588     AFTER INSERT ON transfer
589     REFERENCING NEW TABLE AS inserted
590     FOR EACH STATEMENT
591     EXECUTE FUNCTION check_transfer_balances_to_zero();
592 .fi
593 .if n \{\
594 .RE
595 .\}
596 .sp
597 Execute the function
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):
600 .sp
601 .if n \{\
602 .RS 4
603 .\}
604 .nf
605 CREATE TRIGGER paired_items_update
606     AFTER UPDATE ON paired_items
607     REFERENCING NEW TABLE AS newtab OLD TABLE AS oldtab
608     FOR EACH ROW
609     EXECUTE FUNCTION check_matching_pairs();
610 .fi
611 .if n \{\
612 .RE
613 .\}
614 .PP
615 Section\ \&37.4
616 contains a complete example of a trigger function written in C\&.
617 .SH "COMPATIBILITY"
618 .PP
619 The
620 \fBCREATE TRIGGER\fR
621 statement in
622 PostgreSQL
623 implements a subset of the
624 SQL
625 standard\&. The following functionalities are currently missing:
626 .sp
627 .RS 4
628 .ie n \{\
629 \h'-04'\(bu\h'+03'\c
630 .\}
631 .el \{\
632 .sp -1
633 .IP \(bu 2.3
634 .\}
635 While transition table names for
636 AFTER
637 triggers are specified using the
638 REFERENCING
639 clause in the standard way, the row variables used in
640 FOR EACH ROW
641 triggers may not be specified in a
642 REFERENCING
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
644 REFERENCING
645 clause containing
646 OLD ROW AS OLD NEW ROW AS NEW\&.
647 .RE
648 .sp
649 .RS 4
650 .ie n \{\
651 \h'-04'\(bu\h'+03'\c
652 .\}
653 .el \{\
654 .sp -1
655 .IP \(bu 2.3
656 .\}
657 The standard allows transition tables to be used with column\-specific
658 UPDATE
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
660 PostgreSQL\&.
661 .RE
662 .sp
663 .RS 4
664 .ie n \{\
665 \h'-04'\(bu\h'+03'\c
666 .\}
667 .el \{\
668 .sp -1
669 .IP \(bu 2.3
670 .\}
671 PostgreSQL
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\&.
674 .RE
675 .PP
676 SQL specifies that multiple triggers should be fired in time\-of\-creation order\&.
677 PostgreSQL
678 uses name order, which was judged to be more convenient\&.
679 .PP
680 SQL specifies that
681 BEFORE DELETE
682 triggers on cascaded deletes fire
683 \fIafter\fR
684 the cascaded
685 DELETE
686 completes\&. The
687 PostgreSQL
688 behavior is for
689 BEFORE DELETE
690 to always fire before the delete action, even a cascading one\&. This is considered more consistent\&. There is also nonstandard behavior if
691 BEFORE
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\&.
693 .PP
694 The ability to specify multiple actions for a single trigger using
695 OR
696 is a
697 PostgreSQL
698 extension of the SQL standard\&.
699 .PP
700 The ability to fire triggers for
701 \fBTRUNCATE\fR
702 is a
703 PostgreSQL
704 extension of the SQL standard, as is the ability to define statement\-level triggers on views\&.
705 .PP
706 \fBCREATE CONSTRAINT TRIGGER\fR
707 is a
708 PostgreSQL
709 extension of the
710 SQL
711 standard\&. So is the
712 OR REPLACE
713 option\&.
714 .SH "SEE ALSO"
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))