CBSE Class 12 Computer Science Question 15 of 25

Table Creation and Data Manipulation Commands — Question 15

Back to all questions
15
Question

Question 15

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

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