
sql
January 10, 2019
Drop a trigger from a table
To drop a trigger from a table you need this command
DROP TRIGGER
DROP TRIGGER IF EXISTS trigger_name ON table_name;
Thanks for reading!

To drop a trigger from a table you need this command
DROP TRIGGER IF EXISTS trigger_name ON table_name;
Thanks for reading!