I\'m designing a small database for a personal project, and one of the tables, call it table C
, needs to have a foreign key to one of two tables, call them
You're describing a design called Polymorphic Associations. This often gets people into trouble.
What I usually recommend:
A --> D <-- B
^
|
C
In this design, you create a common parent table D
that both A
and B
reference. This is analogous to a common supertype in OO design. Now your child table C
can reference the super-table and from there you can get to the respective sub-table.
Through constraints and compound keys you can make sure a given row in D
can be referenced only by A
or B
but not both.
If you're sure that C
will only ever be referring to one of two tables (and not one of N), then your first choice is a sensible approach (and is one I've used before). But if you think the number of foreign key columns is going to keep increasing, this suggests there's some similarity or overlap that could be incorporated, and you might want to reconsider.