Defines a new trigger. User-defined triggers are not supported in Greenplum Database.
CREATE TRIGGER <name> {BEFORE | AFTER} {<event> [OR ...]}
ON <table> [ FOR [EACH] {ROW | STATEMENT} ]
EXECUTE PROCEDURE <funcname> ( <arguments> )
CREATE TRIGGER
creates a new trigger. The trigger will be associated with the specified table and will execute the specified function when certain events occur.
Due to the distributed nature of a Greenplum Database system, the use of triggers is very limited in Greenplum Database. The function used in the trigger must be IMMUTABLE
, meaning it cannot use information not directly present in its argument list. The function specified in the trigger also cannot execute any SQL or modify distributed database objects in any way. Given that triggers are most often used to alter tables (for example, update these other rows when this row is updated), these limitations offer very little practical use of triggers in Greenplum Database. For that reason, Greenplum does not support the use of user-defined triggers in Greenplum Database. Triggers cannot be used on append-optimized tables.
If multiple triggers of the same kind are defined for the same event, they will be fired in alphabetical order by name.
SELECT does not modify any rows so you can not create SELECT
triggers. Rules and views are more appropriate in such cases.
INSERT
and
UPDATE
operations only). If the trigger fires after the event, all changes, including the last insertion, update, or deletion, are visible to the trigger.
INSERT
,
UPDATE
, or
DELETE
). Multiple events can be specified using OR.
FOR EACH STATEMENT
is the default. A trigger that is marked
FOR EACH ROW
is called once for every row that the operation modifies. In contrast, a trigger that is marked
FOR EACH STATEMENT
only executes once for any given operation, regardless of how many rows it modifies.
IMMUTABLE
, taking no arguments, and returning type
trigger
, which is executed when the trigger fires. This function must not execute SQL or modify the database in any way.
To create a trigger on a table, the user must have the TRIGGER
privilege on the table.
Declare the trigger function and then a trigger:
CREATE FUNCTION sendmail() RETURNS trigger AS
'$GPHOME/lib/emailtrig.so' LANGUAGE C IMMUTABLE;
CREATE TRIGGER t_sendmail AFTER INSERT OR UPDATE OR DELETE
ON mytable FOR EACH STATEMENT EXECUTE PROCEDURE sendmail();
The CREATE TRIGGER
statement in Greenplum Database implements a subset of the SQL standard. The following functionality is currently missing:
AFTER UPDATE OF col1, col2
).CREATE TRIGGER ... ON tablename REFERENCING OLD ROW AS somename NEW ROW AS othername ...
). Since Greenplum Database allows trigger procedures to be written in any number of user-defined languages, access to the data is handled in a language-specific way.CREATE TABLE
as the triggered action. This limitation is not hard to work around by creating a user-defined function that executes the desired commands.BEFORE DELETE
triggers on cascaded deletes fire after the cascaded DELETE
completes. The Greenplum Database behavior is for BEFORE DELETE
to always fire before the delete action, even a cascading one. This is considered more consistent.OR
is a Greenplum Database extension of the SQL standard.CREATE FUNCTION, ALTER TRIGGER, DROP TRIGGER, CREATE RULE
Parent topic: SQL Command Reference