InterviewSolution
Saved Bookmarks
| 1. |
Why Should Column Names Be Used In The Insert Statements? |
|
Answer» The INSERT statements should have column NAMES so that if any UNRELATED change to the table is made after the program unit is compiled, AUTOMATIC recompilation should SUCCEED. The INSERT statements should have column names so that if any unrelated change to the table is made after the program unit is compiled, automatic recompilation should succeed. |
|