The table “Department” was created with the specification be…
The table “Department” was created with the specification below. CREATE TABLE Department ( Code TINYINT UNSIGNED, Name VARCHAR(20) UNIQUE, ManagerID SMALLINT, Appointment DATE, PRIMARY KEY (Code), UNIQUE (ManagerID, Appointment) );True or False that the two rows below violate the UNIQUE constraints on Department. (12, ‘Marketing’, 2538, ‘2019-11-22’) (99, ‘Marketing’, NULL, NULL)