What is the SQL Query to show this table on sql plus CREATE
What is the SQL Query to show this table on sql plus?
CREATE TABLE department
(
dep_Id int NOT NULL,
depart_Name varchar(255) NOT NULL,
manager varchar(255),
PRIMARY KEY (dep_Id));
Solution
CREATE TABLE department
(
dep_Id int NOT NULL,
depart_Name varchar(255) NOT NULL,
manager varchar(255),
PRIMARY KEY (dep_Id));
)
SELECT * FROM department;
