What is a trigger in PL/SQL?
A trigger is a PL/SQL program which is stored in the database. It is executed immediately before or after the execution of INSERT, UPDATE, and DELETE commands. In PL/SQL, a trigger is a set of instructions that are automatically executed (“triggered”) in response to specific events on a particular table or view. These events include … Read more