Computer Science

Populate the table Department with data from table dept. Including only required columns.

DDL & DML

7 Likes

Answer

INSERT INTO Department (ID, Name)
SELECT ID, Name
FROM dept ;

Answered By

4 Likes


Related Questions