DROP TRIGGER

Updated: April 19, 2023

Remove a trigger

Synopsis:

 DROP TRIGGER [IF EXISTS] [database-name.] trigger-name 

Description:

The DROP TRIGGER statement removes a trigger created by the CREATE TRIGGER statement. The trigger is deleted from the database schema.

Triggers are automatically dropped when the associated table is dropped.