CBSE Class 12 Computer Science Question 68 of 79

Table Creation and Data Manipulation Commands — Question 14

Back to all questions
14
Question

Question 14

Create the table Department table based on the following table instance chart.

Column NameIDName
Data TypeNUMBERVARCHAR
Length825
Answer
CREATE TABLE Department (
ID NUMBER(8),
Name VARCHAR(25)
);