InterviewSolution
| 1. |
What Are Triggers? Why Do We Use Them? Diff Types Of Triggers? What Are Magic Tables? |
|
Answer» A trigger is a stored procedure BOUND to a table, which is implicitly executed when a user attempts to modify DATA with an insert, delete, or update command. A trigger is a stored procedure bound to a table, which is implicitly executed when a user attempts to modify data with an insert, delete, or update command. |
|