If I use the primary key of a table as the primary key of another table is it still a foreign key?
e.g.
Two tables albums and special offers
AlbumId is the primary key in both
How do I represent this relation using primary key foreign key notation?
|
If I use the primary key of a table as the primary key of another table is it still a foreign key? e.g. Two tables albums and special offers AlbumId is the primary key in both How do I represent this relation using primary key foreign key notation? |
|||
|
|
|
Yes, it's still a primary key. It's usually called a one-to-one relation. You can do something like:
|
|||
|
|
|
if e.g you have several special offers for the same album AlbumId is no longer unique in the special offers table. |
|||
|
|
|
Pablo Santa Cruz is right - yes, you're allowed to do this. However, philosophically, it's only meaningful if there really is a one-to-one relationship - all albums have one and only one special offer, and all special offers have one and only one album. Guessing from your problem domain, that's not the case - some albums have no special offers, some have 1, some have many. If that is indeed true, bw_üezi is right - create a one-to-many relationship.
|
|||
|
|