DEV Community

Cover image for Alterar tabla de base de datos y agregar llaves foraneas.
Darwing  Castellanos
Darwing Castellanos

Posted on

Alterar tabla de base de datos y agregar llaves foraneas.

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);
Enter fullscreen mode Exit fullscreen mode

Top comments (0)