Computer Science

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

DDL & DML

13 Likes

Answer

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

Answered By

7 Likes


Related Questions