A CALL statement inside the trigger body enables you to call ______.
A.
A package.
B.
A stored function.
C.
A stored procedure.
D.
Another database trigger.
Explanation:
Incorrect Answers:
A: Package can’t be called, we call a procedure inside the package.B. We can’t call a function use
CALL statement because function must return a value.D. Trigger can’t be called, they are execute
automatically when the trigger event occure.