|
DROP TRIGGERNameDROP TRIGGER — Removes the definition of a triggerDROP TRIGGER name ON table Inputs
Outputs
DescriptionDROP TRIGGER will remove all references to an existing trigger definition. To execute this command the current user must be the owner of the trigger. NotesDROP TRIGGER is a Postgres language extension. Refer to CREATE TRIGGER for information on how to create triggers. UsageDestroy the if_dist_exists trigger on table films: DROP TRIGGER if_dist_exists ON films; CompatibilitySQL92There is no DROP TRIGGER statement in SQL92. |
|||||||||||||||||
With any suggestions or questions please feel free to contact us |