InterviewSolution
Saved Bookmarks
| 1. |
Deletion of an employee from table also deletes that employee from another table. This kind of delete is called ____________(a) transparent(b) concrete(c) elaborate(d) cascaded |
|
Answer» The correct option is (d) cascaded Explanation: In MySQL, a cascaded delete and update is possible where records can be deleted from multiple tables. These tables are related with the help of foreign keys. Foreign keys make table updates flexible. |
|