i'm trying create software gym i'm getting error , don't know why, i've trying hours nothing
create table socios ( idsocio int not null auto_increment, nombre varchar(30) not null, apellido varchar(30) not null, n_celular varchar(12), correo varchar(60), fecha_nacimiento date not null, fecha_asociacion date not null, fecha_modificacion date not null, notas varchar(100), primary key (idsocio) ) engine=innodb; create table tipos( idtipos int not null auto_increment, tipo varchar (30) not null, precio decimal(6,2) not null, primary key (idtipos) ) engine = innodb; create table productos ( idproducto int not null auto_increment, producto varchar (40) not null, descripcion varchar (100), costo_individual decimal(6,2) not null, precio_venta decimal(6,2) not null, estado bool not null, cantidad_inicial int not null, cantidad_actual int not null, primary key(idproducto) ) engine = innodb;
error code: 1215. cannot add foreign key constraint i'm getting error tables
create table membresia( idmembresia int not null auto_increment, nombre varchar(30) not null, tipo varchar(30) not null, fecha_inicio date not null, fecha_vencimiento date not null, inscripcion bool not null, estado_membresia varchar(15) not null, fecha_modificacion date not null, total decimal(6,2) not null, nota varchar(100), fecha_nota date, primary key (idmembresia), constraint idsocio foreign key (nombre) references socios (nombre), constraint idtipos foreign key (tipo,total) references tipos (tipo,precio) ) engine = innodb; create table ventas ( idventa int not null auto_increment, producto varchar (40) not null, fecha_venta date not null, cantidad int not null, total decimal(8,2), fecha_modificacion date not null, nota varchar (100), primary key (idventa), constraint idproducto foreign key (producto) references productos(producto) ) engine = innodb;
this on initial hurdle. though doubt want fk on price don't know translation mother tongue.
you need indexes on referenced tables columns looked in fk's.
create schema dbtest_xyz; use dbtest_xyz; -- drop table socios; create table socios ( idsocio int not null auto_increment, nombre varchar(30) not null, apellido varchar(30) not null, n_celular varchar(12), correo varchar(60), fecha_nacimiento date not null, fecha_asociacion date not null, fecha_modificacion date not null, notas varchar(100), primary key (idsocio), key(nombre) -- added ******************************* ) engine=innodb; -- drop table tipos; create table tipos( idtipos int not null auto_increment, tipo varchar (30) not null, precio decimal(6,2) not null, primary key (idtipos), key(tipo), -- added ******************************* key(precio) -- added ******************************* ) engine = innodb; -- drop table productos; create table productos ( idproducto int not null auto_increment, producto varchar (40) not null, descripcion varchar (100), costo_individual decimal(6,2) not null, precio_venta decimal(6,2) not null, estado bool not null, cantidad_inicial int not null, cantidad_actual int not null, primary key(idproducto), key(producto) -- added ******************************* ) engine = innodb; create table membresia( idmembresia int not null auto_increment, nombre varchar(30) not null, tipo varchar(30) not null, fecha_inicio date not null, fecha_vencimiento date not null, inscripcion bool not null, estado_membresia varchar(15) not null, fecha_modificacion date not null, total decimal(6,2) not null, nota varchar(100), fecha_nota date, primary key (idmembresia), constraint idsocio foreign key (nombre) references socios (nombre), constraint idtipos foreign key (tipo) references tipos (tipo), constraint idmembresia foreign key (total) references tipos (precio) ) engine = innodb; create table ventas ( idventa int not null auto_increment, producto varchar (40) not null, fecha_venta date not null, cantidad int not null, total decimal(8,2), fecha_modificacion date not null, nota varchar (100), primary key (idventa), constraint idproducto foreign key (producto) references productos(producto) ) engine = innodb; -- cleanup: drop schema dbtest_xyz;
mysql manual page on foreign keys
mysql requires indexes on foreign keys , referenced keys foreign key checks can fast , not require table scan. in referencing table, there must index foreign key columns listed first columns in same order. such index created on referencing table automatically if not exist. index might silently dropped later, if create index can used enforce foreign key constraint. index_name, if given, used described previously.
note, reason have drop tables
above tables is wise have them in place while 1 iteratively attempts creations. when fk creations fail, 1 (almost always) has re-jigger referenced , referencing tables.
Comments
Post a Comment