创建一个商城表---包含(id,商品名,每一个商品对应数量)
create table product (id primary key auto_increment, pname varchar(64), pcount int);