InterviewSolution
Saved Bookmarks
| 1. |
The CREATE TRIGGER statement is used to create the trigger. THE _____ clause specifies the table name on which the trigger is to be attached. The ______ specifies that this is an AFTER INSERT trigger.(a) for insert, on(b) On, for insert(c) For, insert(d) None of the mentionedThis question was posed to me in an online interview.My question comes from Triggers topic in chapter SQL : Queries, Constraints and Triggers of Database Management |
|
Answer» The correct answer is (B) On, for INSERT |
|