Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Welcome to Stack Overflow. Please write your question completely in the body — the title should be a synopsis of the question, but the question itself should be written out in full in the body of the question. Please read the FAQ before too long, too. – Jonathan Leffler Jan 19 at 19:40

marked as duplicate by Matt Whipple, Jaguar, Jan Dvorak, Jonathan Leffler, pickles Jan 19 at 19:51

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.

3 Answers

up vote 1 down vote accepted

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
share|improve this answer

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.

share|improve this answer

Some ORMs need FKs to be nullable because of the way they link entities and manage dependencies.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.