You are on page 1of 1

CREATE TABLE productos (

id int not null auto_increment,


producto char(40) not null,
linea char(20) not null,
precioprod numeric not null,
preciopub numeric not null,
existencias integer not null,
PRIMARY KEY (id));

You might also like