A DROP TABLE statement deletes a
trigger for a table.Syntax
<drop_trigger_statement> ::= DROP TRIGGER <trigger_name> OF <table_name>
trigger_name, table_nameExplanation
The specified table name must identify an existing table of the current user.
The specified trigger name must identify an existing trigger of the table.
The metadata of the trigger is dropped.