DROP TRIGGER name ON table
The name of an existing trigger.
The name of a table.
The message returned if the trigger is successfully dropped.
This message occurs if the trigger specified does not exist.
DROP TRIGGER will remove all references to an existing trigger definition. To execute this command the current user must be the owner of the trigger.
The DROP TRIGGER statement is a PostgreSQL language extension.
Refer to the CREATE TRIGGER statement for information on how to create triggers.
Destroy the if_dist_exists trigger on table films:
DROP TRIGGER if_dist_exists ON films;
There is no DROP TRIGGER statement in SQL92.