练习
有一家玩具公司 4 种产品的成本价 ( 厂商价 CTM) 、批发价
( 给零售商的价 CTR) 、零售价 ( 消费者的价格 CTC) 和当前
存货量
create table toys(id int(4) not null auto_increment,item varc
har(20) not null,ctm float(6,2) not null, ctr float(6,2),ctc float
(6,2) not null,quantity int(6), primary key(id));
测试数据
insert into toys values(null,'Huggy bear',5.00,7.40,9.90,300);
insert into toys values(null,'Coloring book',3.00,5.00,7.99,20
00);
insert into toys values(null,'Board game',12.00,20.00,39.90,
1430);
insert into toys values(null,'Activity CD-ROM',2.00,6.00,17.4
9,3780);
评论1
最新资源