A call statement inside the trigger enables you to call the ?
-
Package
-
Stored Function
-
Stored Procedure
-
Another Trigger
C
Correct answer
Explanation
A CALL statement within a database trigger is used to invoke stored procedures. Triggers can execute stored procedures to perform complex operations that cannot be done with simple SQL statements. Packages are schema objects that group related procedures, functions, and variables, while stored functions return values and cannot be called with CALL in most database systems.