Name
DROP TRIGGER — Delete a trigger action from a database
Common Usage
DROP TRIGGER database_name.trigger_name;
Description
The DROP
TRIGGER command removes a trigger from the
database. A trigger will also be removed when the associated table is
removed.
Dropping a trigger that does not
exist normally generates an error. If the optional IF EXISTS clause is provided,
this error is silently ignored.