Entering content frame

DROP TRIGGER statement 

A DROP TABLE statement deletes a trigger for a table.

Syntax

<drop_trigger_statement> ::= DROP TRIGGER <trigger_name> OF <table_name>

trigger_name, table_name

Explanation

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.

Leaving content frame