DROP TRIGGERSection: SQL Commands (7)Updated: 2003-11-02 |
DROP TRIGGERSection: SQL Commands (7)Updated: 2003-11-02 |
DROP TRIGGER name ON table [ CASCADE | RESTRICT ]
DROP TRIGGER will remove an existing trigger definition. To execute this command, the current user must be the owner of the table for which the trigger is defined.
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.