Small. Fast. Reliable.
Choose any three.

SQL As Understood By SQLite

[Top]

DROP TRIGGER

drop-trigger-stmt:

syntax diagram drop-trigger-stmt

The DROP TRIGGER statement removes a trigger created by the CREATE TRIGGER statement. Once removed, the trigger definition is no longer present in the sqlite_master (or sqlite_temp_master) table and is not fired by any subsequent INSERT, UPDATE or DELETE statements.

Note that triggers are automatically dropped when the associated table is dropped.