create an employee table with the following attributes employee id, employee name, contact number, address salary
Answers
Answered by
0
Explanation:
create an employee table with the following attributes employee id, employee name, contact number, address salary
Answered by
1
Answer:
CREATE TABLE EMPLOYEE (
ID INT NOT NULL,
NAME VARCHAR (20) NOT NULL,
CONTACT_NUMBER (20) NOT NULL,
AGE INT NOT NULL,
SALARY MONEY,
ADDRESS CHAR (25),
PRIMARY KEY (ID)
);
Similar questions