Name
DROP TRIGGER -- remove a trigger
Synopsis
DROP TRIGGER name
Description
DROP TRIGGER removes a trigger from its associated table. The command must be run by a superuser or the owner of the table on which the trigger is defined.
Parameters
name
The name of a trigger to remove.
Examples
Remove trigger emp_sal_trig:
DROP TRIGGER emp_sal_trig;
See Also