DROP TRIGGER
The DROP TRIGGER statement removes a trigger from the database schema. Once dropped, the trigger no longer fires in response to its associated table events.Syntax
Description
DROP TRIGGER removes the named trigger from the database. The trigger must exist unless theIF EXISTS clause is specified.
Clauses
Dropping a trigger does not affect any data in the table the trigger was associated with. It only removes the trigger definition from the schema.
Examples
Drop a Trigger
Drop a Trigger with IF EXISTS
Drop a Trigger in an Attached Database
See Also
- CREATE TRIGGER for creating triggers
- CREATE TABLE for table definitions