How to store counter commodity based database?

Create a mall that contains table --- (id, trade names, each corresponding to a quantity of goods)

create table product

  (id primary key auto_increment,

    pname varchar(64),

     pcount int);

Guess you like

Origin www.cnblogs.com/Rivend/p/12089600.html