Populate the table Department with data from table dept. Including only required columns.
INSERT INTO Department (ID, Name) SELECT ID, Name FROM dept ;