create TABLE tblproductos(
codproducto int(11) PRIMARY KEY AUTO_INCREMENT not null,
nombre_p varchar(30) not null,
precio int(11) not null
);
create TABLE tbltiendas(
codtiendas int(11) PRIMARY KEY AUTO_INCREMENT not null,
nombre_v varchar(30) not null,
direccion_t varchar(30) not null
);
create TABLE tblusuarios(
codusuario int(11) PRIMARY KEY AUTO_INCREMENT not null,
nombre_u varchar(30) not null,
telefono varchar(20) not null,
direccion_u varchar(30) not null
);
create TABLE tblpuntos(
codpunto int(11) PRIMARY KEY AUTO_INCREMENT not null,
puntos_gastados int(11) not null,
puntos_totales int(11) not null,
puntos_actuales int(11) not null,
codusuario int(11) not null
);
create TABLE tblp_t(
codp_t int(11) PRIMARY KEY AUTO_INCREMENT not null,
codproducto int(11) not null,
codtienda int(11) not null
);
create TABLE tblventas(
codventa int(11) PRIMARY KEY AUTO_INCREMENT not null,
descuento int(11) not null,
precio_punto int(11) not null,
codpunto int(11) not null,
codp_t int(11) not null
);
ALTER TABLE tblp_t ADD CONSTRAINT producto_fk
FOREIGN KEY (codproducto)
REFERENCES tblproductos(codproducto);
ALTER TABLE tblp_t ADD CONSTRAINT tienda_fk
FOREIGN KEY (codtienda)
REFERENCES tbltiendas(codtiendas);
ALTER TABLE tblventas ADD CONSTRAINT pt_fk
FOREIGN KEY (codp_t) REFERENCES tblp_t(codp_t);
ALTER TABLE tblventas ADD CONSTRAINT puntos_fk
FOREIGN KEY (codpunto)
REFERENCES tblpuntos(codpunto);
ALTER TABLE tblpuntos ADD CONSTRAINT usuario_fk
FOREIGN KEY (codusuario)
REFERENCES tblusuarios(codusuario);