CBSE Class 12 Computer Science Question 69 of 79

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 ;