InterviewSolution
Saved Bookmarks
| 1. |
What Is On Delete Cascade? |
|
Answer» When ON DELETE CASCADE is SPECIFIED Oracle maintains referential integrity by automatically removing DEPENDENT foreign key values if a referenced primary or unique key value is REMOVED. When ON DELETE CASCADE is specified Oracle maintains referential integrity by automatically removing dependent foreign key values if a referenced primary or unique key value is removed. |
|