4 DROP EVENT TRIGGER — remove an event trigger
8 DROP EVENT TRIGGER [ IF EXISTS ] name [ CASCADE | RESTRICT ]
12 DROP EVENT TRIGGER removes an existing event trigger. To execute this
13 command, the current user must be the owner of the event trigger.
18 Do not throw an error if the event trigger does not exist. A
19 notice is issued in this case.
22 The name of the event trigger to remove.
25 Automatically drop objects that depend on the trigger, and in
26 turn all objects that depend on those objects (see
30 Refuse to drop the trigger if any objects depend on it. This is
35 Destroy the trigger snitch:
36 DROP EVENT TRIGGER snitch;
40 There is no DROP EVENT TRIGGER statement in the SQL standard.
44 CREATE EVENT TRIGGER, ALTER EVENT TRIGGER