Based on each pair of primary and foreign key above please i
Based on each pair of primary and foreign key above, please indicate which one is the recursive referential integrity constraint and which one is the MUTUAL recursive referential integrity constraint.
EMPLOYEE DEPARTMENT DNAME DNUMEER MGRSSN MGRSTARTDATE DEPT LOCATIONS DNUMBER DLOCATION PROJECT WORKS ON ESS PNO HOURS DEPENDENT ESSN DEPENDENT NAME SEX BOATE RELATIONSHPSolution
Sometimes, it is very useful to disable foreign key checks e.g., when you import data from a CSV file into a table. If you don’t disable foreign key checks, you have to load data into a proper order i.e., you have to load data into parent tables first and then child tables, which can be tedious. However, if you disable the foreign key checks, you can load data in any orders.
Another example is that, unless you disable the foreign key checks, you cannot drop a table that is referenced by a foreign key constraint. When you drop a table, any constraints that you defined for the table are also removed.
