KnowledgeBoat Logo
|
LoginJOIN NOW

Computer Science

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

Column NameIDName
Data TypeNUMBERVARCHAR
Length825

DDL & DML

11 Likes

Answer

CREATE TABLE Department (
ID NUMBER(8),
Name VARCHAR(25)
);

Answered By

4 Likes


Related Questions