Quick onboard
Deployment
Data Modeling
Connection
Migration
Query
Operations and Maintenance
Common Maintenance
Partition
Backup and Restore
Expansion
Monitoring
Performance Tuning
Troubleshooting
Reference Guide
Tool guide
Data type
Storage Engine
Executor
Stream
DR (Disaster Recovery)
Configuration
Index
Extension
SQL Reference
Removes a trigger.
DROP TRIGGER [IF EXISTS] <name> ON <table> [CASCADE | RESTRICT]
DROP TRIGGER
will remove an existing trigger definition. To run this command, the current user must be the owner of the table for which the trigger is defined.
Remove the trigger sendmail
on table expenses
;
DROP TRIGGER sendmail ON expenses;
The DROP TRIGGER
statement in Database is not compatible with the SQL standard. In the SQL standard, trigger names are not local to tables, so the command is simply DROP TRIGGER
name.