Posts by José Florentino • 66 points
1 post
-
5
votes1
answer103
viewsA: How to make a Unique field for each Foreign key?
If it is via command just use this command to add a Constraint compound: ALTER TABLE Persons ADD CONSTRAINT UC_Person UNIQUE (ID,LastName); If it were via SGBD just edit the table, select the fields…