Computer Science, asked by p48925, 10 months ago

solve this question urgently ​

Attachments:

Answers

Answered by rani49035
1

Answer:

create table salesperson

(SCODE decimal(6) PRIMARY KEY,

firstname varchar(30) NOT NULL,

lastname varchar(30) NOT NULL,

city varchar(30),

sales decimal(8));

insert into salesperson

values(101, 'tina', 'singh', 'gr_noida', 1003);

insert into salesperson

values(102, 'Rina', 'singh', 'noida', 2003);

hope this will help you

Similar questions