6. When defining the Foreign Key constraint (see the partial code given below), why we only specify "ON DELETE" and/or "
Posted: Fri Jul 01, 2022 5:52 am
6. When defining the Foreign Key constraint (see the partial code given below), why we only specify "ON DELETE" and/or "ON UPDATE" but do not specify "ON INSERT"? Explain. [1 mark] CREATE TABLE EMPLOYEE ( FOREIGN KEY(Dno) REFERENCES DEPARTMENT(Dnumber) ON DELETE SET DEFAULT ON UPDATE CASCADE) ;