DROP_TRIGGER
remove a trigger
- Provided by: postgresql-client-10 (Version: 10.23-0ubuntu0.18.04.2)
- Source: postgresql-10
- Report a bug
remove a trigger
DROP TRIGGER [ IF EXISTS ] name ON table_name [ CASCADE | RESTRICT ]
DROP TRIGGER removes an existing trigger definition. To execute this command, the current user must be the owner of the table for which the trigger is defined.
IF EXISTS
name
table_name
CASCADE
RESTRICT
Destroy the trigger if_dist_exists on the table films:
DROP TRIGGER if_dist_exists ON films;
The DROP TRIGGER statement in PostgreSQL is incompatible with the SQL standard. In the SQL standard, trigger names are not local to tables, so the command is simply DROP TRIGGER name.
CREATE TRIGGER (CREATE_TRIGGER(7))