Oracle PL/SQL 中,删除触发器的语法如下:

DROP TRIGGER trigger_name;

例如,如果要删除一个触发器 trg_insert_emp_his,可以执行以下命令:

DROP TRIGGER trg_insert_emp_his;