UsageUse this statement to drop a trigger from a table.
Examples
-- The following statement drops the UpdateNotes trigger.
DROP TRIGGER "UpdateNotes" FROM "Customer"
Required PrivilegesThe current user must be granted the DROP privilege on the specified table in order to execute this statement. Please see the User Security topic for more information.
SQL 2003 Standard DeviationsThis statement deviates from the SQL 2003 standard in the following ways:
Deviation
Details
FROM Clause
The FROM clause is an ElevateDB extension. Triggers are a table-level object in ElevateDB, whereas they are a schema-level object in the standard.