Possible Duplicate:
Nullable Foreign Key bad practice?
I know foreign keys are used to relate or link different tables but my assignment is asking for specific conditions for the subject matter.
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
A foreign key may not be null when it is part of a composite primary key in the child table. tableA id (int) PK tableB id (int) PK tableAB aId (int) bId (int) (aId, bId) PK |
|||
|
|
|
A FOREIGN KEY constraint can contain null values; however, if any column of a composite FOREIGN KEY constraint contains null values, verification of all values that make up the FOREIGN KEY constraint is skipped. To make sure that all values of a composite FOREIGN KEY constraint are verified, specify NOT NULL on all the participating columns. |
|||
|
|
|
Some ORMs need FKs to be nullable because of the way they link entities and manage dependencies. |
|||
|
|