Computer Science, asked by rcpathak057gmailcom, 1 year ago

plzzzzzzzz answer soon....................


how to create a table employee when ID, department, address ,contact ,number are needed...​

Answers

Answered by dishankpatel16082003
1

Type this SQL Command

CREATE TABLE "EMPLOYEE" (" ID"INTEGER,

                                                  "Department" VARCHAR (50),

                                                  "Address" VARCHAR (50),

                                                  "Contact" INTEGER )

Answered by Anonymous
0

Answer:

Type this SQL Command

CREATE TABLE "EMPLOYEE" (" ID"INTEGER,

                                                 "Department" VARCHAR (50),

                                                 "Address" VARCHAR (50),

                                                 "Contact" INTEGER )

Explanation:

Similar questions