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. 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. |
|