This Oracle tutorial explains how to use the DROP TRIGGER statement to drop a trigger in Oracle with syntax and examples.
Once you have created a trigger in Oracle, you might find that you need to remove it from the database. You can do this with the DROP TRIGGER statement.
The syntax to a drop a trigger in Oracle in Oracle/PLSQL is:
The name of the trigger that you wish to drop.
Let's look at an example of how to drop a trigger in Oracle.
For example:
This example uses the ALTER TRIGGER statement to drop the trigger called orders_before_insert.