DROP TRIGGER
Description
Deletes a trigger.
Syntax
DROP TRIGGER [IF EXISTS] [ owner_name. ] trigger_name ;
Arguments
IF EXISTS
This argument avoids failure by attempting to drop the trigger only if a trigger of that name already exists.
owner_name
Specifies the owner of the trigger.
trigger_name
Names of the trigger to delete.
Example
DROP TRIGGER sal_check ;
Authorization
SQL Compliance |
SQL-93, ODBC Core SQL grammar |
Environment |
Embedded SQL, interactive SQL, ODBC applications |
Related Statements |
CREATE TRIGGER |