InterviewSolution
Saved Bookmarks
| 1. |
Which statement is used to create a trigger?(a) CREATE TRIGGER(b) CREATE TRIGGERS(c) PRODUCE TRIGGER(d) PRODUCE TRIGGERS |
|
Answer» The correct option is (a) CREATE TRIGGER Easy explanation: In order to create a trigger, the CREATE TRIGGER statement is used. The definition indicates the particular type of statement for which the trigger activates and whether it activates before or after the rows are modified. |
|