SQL Server Triggers Question:

Explain triggers?

MS SQL Server Triggers Interview Question
MS SQL Server Triggers Interview Question

Answer:

Triggers are constructs in PL/SQL that need to be just created and associated with a table. Once they are created, when the table associated with it gets updated due to an UPDATE, INSERT or a DELETE, the triggers get implicitly fired depending upon the instructions passed to them.


Previous QuestionNext Question
How to invoke a trigger on demand?Describe triggers features and limitations?