Computer Science

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

Column NameIDName
Data TypeNUMBERVARCHAR
Length825

DDL & DML

9 Likes

Answer

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

Answered By

3 Likes


Related Questions