1Z0-882 Web TestEngine demo

Exit VCEDump 1Z0-882 MySQL 5.6 Developer
Question 12 of 15
0% complete
Q12 Single choice

You have two tables:
CREATE TABLE department (
Department_ID int unsigned NOT NULL auto_increment PRIMARY KEY, Department_Name varchar(12)
NOT NULL
) ENGINE=InnoDB
CREATE TABLE employee (
Employee_Number int unsigned NOT NULL PRIMARY KEY, Employee_Name varchar(10) NOT NULL,
Department_ID int unsigned DEFAULT NULL,
FOREIGN KEY (Department ID) REFERENCES Department (Department_ID) ON UPDATE SET NULL
ON DELETE CASCADE
) ENGINE= InnoDB
The tables have the data: Department

Question 12 diagram

You execute the statement: REPLACE INTO department (Department_ID, Department_Name) VALUES (1, `Admin');

What data is in the employee table after the statement?

Question 12 diagram

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in