InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of the optional argument [OR REPLACE] in a CREATE TRIGGER command? |
|
Answer» The optional argument [OR REPLACE] in a CREATE TRIGGER command re-creates an existing trigger. Using this option allows changing the definition of an existing trigger without having to delete it first. |
|