Multiple choice technology databases

A trigger is a special type of stored procedure that is executed by the SQL Server when an Insert, Modify or Delete operation is performed Against a given table.

  1. True

  2. False

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

Triggers are indeed special stored procedures that automatically execute in response to certain events on a particular table or view - typically INSERT, UPDATE (modify), or DELETE operations. They're used to enforce business rules, maintain data integrity, or automate tasks without direct user intervention.