Computer Science, asked by rreddy8447, 8 months ago

create an employee table with the following attributes employee id, employee name, contact number, address salary​

Answers

Answered by sandeepsaroha1841979
0

Explanation:

create an employee table with the following attributes employee id, employee name, contact number, address salary

Answered by anua0699
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