DROP TRIGGER

Description

You can drop a trigger by using the DROP TRIGGER statement.

Syntax

DROP TRIGGER trigger_name [ ; ] 

Example

The following example shows how to drop the medal_trig trigger.

DROP TRIGGER medal_trig;

Caution