Multiple choice technology databases

Which of the following events will NOT cause a trigger to be activated?

  1. A select operation

  2. An update operation

  3. An insert operation

  4. A delete operation

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

Database triggers are event-driven procedures that fire only on data modification operations: INSERT, UPDATE, and DELETE. SELECT operations query data without modifying it, so they never activate triggers. This is by design since triggers are meant to enforce business rules, audit changes, or maintain referential integrity when data changes.