Removes a trigger definition from a database.
DROP TRIGGER name ON table
name
The name of the trigger you wish to remove.
table
The name of the table the trigger is on.
Use the DROP TRIGGER
command to remove a trigger from the database.
All references to the trigger are removed when you issue this command. You must be the owner
of trigger in order to drop it.