What is the usage of WHEN clause in trigger?
A WHEN clause specifies the condition that must be true for the trigger to be triggered. In PL/SQL triggers, the WHEN clause is used to specify a condition under which the trigger should be fired. The WHEN clause allows you to define a condition that, when true, activates the trigger and executes its associated trigger … Read more