The Department table was created as follows:CREATE TABLE Dep…

The Department table was created as follows:CREATE TABLE Department (   DepartmentCode SMALLINT UNSIGNED AUTO_INCREMENT,   DepartmentName VARCHAR(20) NOT NULL,   PRIMARY KEY (DepartmentCode));The Department table now contains the following rows: DepartmentCode DepartmentName 1 Sales 2 Marketing 3 Development What is the result of the following statement?INSERT INTO Department (DepartmentName)VALUES (‘Shipping’);