AQUÍ UN EJEMPLO CON UNA TABLA FACTURAS A LA CUAL QUEREMOS AGREGAR RELACIÓN A TABLA MESEROS, MESAS, TURNOS , ESTACIONES, Y ENCABEZADOS.
alter table Facturas add CONSTRAINT FK_FFE foreign key(IdEncabezado) references EncabezadosFacturas(IdEncabezado);
alter table Facturas add CONSTRAINT FK_FFEstacion foreign key(IdEstacion) references Estaciones(IdEstacion);
alter table Facturas add CONSTRAINT FK_FFMesero foreign key(IdMesero) references Usuarios(IdUsuario);
alter table Facturas add CONSTRAINT FK_FFM foreign key(IdMesa) references Mesas(IdMesa);
alter table Facturas add CONSTRAINT FK_FFT foreign key(IdTurno) references Turnos(IdTurno);
Top comments (0)