Examine the data in the EMPLOYEES table.<br /> <img src="https://img.ppkao.com/2018-08/yiyu/2018080116142343771.jpg" /><br /> On the EMPLOYEES table, EMPLOYEE_ID is the primary key. MGR_ID is the ID of managers and refers to the EMPLOYEE_ID. The JOB_ID column is a NOT NULL column.<br /> Evaluate this DELETE statement:<br /> <img src="https://img.ppkao.com/2018-08/yiyu/2018080116143431551.jpg" /><br /> Why does the DELETE statement fail when you execute it?()<p> Examine the data in the EMPLOYEES table.<br /> <img src="https://img.ppkao.com/2018-08/yiyu/2018080116142343771.jpg" /><br /> On the EMPLOYEES table, EMPLOYEE_ID is the primary key. MGR_ID is the ID of managers and refers to the EMPLOYEE_ID. The JOB_ID column is a NOT NULL column.<br /> Evaluate this DELETE statement:<br /> <img src="https://img.ppkao.com/2018-08/yiyu/2018080116143431551.jpg" /><br /> Why does the DELETE statement fail when you execute it?()</p>
A、A. There is no row with dept_id 90 in the EMPLOYEES table.
B、B. You cannot delete the JOB_ID column because it is a NOT NULL column.
C、C. You cannot specify column names in the DELETE clause of the DELETE statement.
D、D. You cannot delete the EMPLOYEE_ID column because it is the primary key of the table.