DROP TRIGGER

Function

DROP TRIGGER deletes a trigger.

Precautions

Only the owner of a trigger and system administrators can run the DROP TRIGGER statement.

Syntax

1
DROP TRIGGER [ IF EXISTS ] trigger_name ON table_name [ CASCADE | RESTRICT ];

Parameter Description

Examples

Delete the trigger insert_trigger.

1
DROP TRIGGER insert_trigger ON test_trigger_src_tbl;

Helpful Links

CREATE TRIGGER, ALTER TRIGGER, ALTER TABLE