We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentac7009a commit62f5e44Copy full SHA for 62f5e44
doc/src/sgml/ref/create_trigger.sgml
@@ -24,7 +24,7 @@ PostgreSQL documentation
24
CREATE [ CONSTRAINT ] TRIGGER <replaceable class="PARAMETER">name</replaceable> { BEFORE | AFTER | INSTEAD OF } { <replaceable class="PARAMETER">event</replaceable> [ OR ... ] }
25
ON <replaceable class="PARAMETER">table_name</replaceable>
26
[ FROM <replaceable class="parameter">referenced_table_name</replaceable> ]
27
- [ NOT DEFERRABLE | [ DEFERRABLE ]{ INITIALLY IMMEDIATE | INITIALLY DEFERRED} ]
+ [ NOT DEFERRABLE | [ DEFERRABLE ][ INITIALLY IMMEDIATE | INITIALLY DEFERRED] ]
28
[ FOR [ EACH ] { ROW | STATEMENT } ]
29
[ WHEN ( <replaceable class="parameter">condition</replaceable> ) ]
30
EXECUTE PROCEDURE <replaceable class="PARAMETER">function_name</replaceable> ( <replaceable class="PARAMETER">arguments</replaceable> )