Alterar tabla de base de datos y agregar llaves foraneas.
Darwing Castellanos
Posted on October 8, 2022
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);
💖 💪 🙅 🚩
Darwing Castellanos
Posted on October 8, 2022
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
learning Celebrating 10,000 Followers on DEV.to – A Journey of Learning and Growth[Must Read]
November 30, 2024