111k views
1 vote
A ________ is procedural SQL code that is automatically invoked by the RDBMS upon the occurrence of a given data manipulation event. a. stored procedure b. stored function c. index d. trigger

User Santrack
by
7.9k points

1 Answer

4 votes

Answer: d. trigger

Step-by-step explanation:

A trigger is procedural SQL code that is automatically invoked by the RDBMS upon the occurrence of a given data manipulation event. A statement-level trigger is assumed if you omit the FOR EACH ROW keywords. The type of trigger is executed once, before or after the triggering statement is completed.

User Timo Ohr
by
8.7k points