Productos
CREATE TABLE Productos
(Pnumero char(6) not null,
Pnombre char(20) not null,
Color char(6) not null,
Peso smallint not null,
Pciudad char(15) not null,
Primary Key (Pnumero));
Proveedores
CREATE TABLE Proveedores(RFC char(5) not null,
Snombre char(20) not null,
Situacion smallint not null,
Ciudad char(15) not null,
Primary Key (RFC));
No hay comentarios:
Publicar un comentario