Multiple choice technology databases

What are the different events in Triggers?

  1. Define, Create

  2. Insert, Update, Delete

  3. Drop, Comment

  4. All of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Triggers are database objects that automatically execute in response to specific data manipulation events. The three primary DML events that can fire triggers are INSERT (when new rows are added), UPDATE (when existing rows are modified), and DELETE (when rows are removed). Options like Define, Create, Drop, and Comment are DDL operations, not trigger events.