InterviewSolution
Saved Bookmarks
| 1. |
Which statement is used to remove a trigger?(a) REMOVE(b) DELETE(c) DROP(d) CLEAR |
|
Answer» Correct choice is (c) DROP Explanation: In order to delete a trigger, the DROP TRIGGER statement is used. The DROP TRIGGER construct is used by writing the phrase ‘DROP TRIGGER’ followed by the scheme name specification. |
|