Suppose the ASCII tree below is a UML generalized concept model. To represent these entities/classes in UML, lets assume [mammal] a super class, and the level 1 classes, [wild] and [domestic] are sub classes in UML. In other words, class [wild] inherits all attributes from [mammal], and [domestic] inherits all attributes from [mammal] as well. Furthermore, [raccoon] and [white tail deer] inherit all attributes from [wild].
I want to convert the UML model to a relational database model.
Notice how [raccoon] extends both [wild] and [domestic]. In other words, it has two parents. I would normally make the primary key of all descendant tables the same as their parent primary key. In addition, I'd make the foreign key in the descendant table the same as the primary key in its parent table. Because [raccoon] has two parents, how would I build that table?
mammal
|
+- wild
| |
| +- raccoon
| |
| +- white tail deer
|
+- domestic
|
+- cat
| |
| +- siberian
|
+- dog
| |
| +- golden retriever
| |
| +- lab
|
+- raccoon
1 Answer 1
You can have two (or more) foreign keys in a table. They can be both regarding the same attribute and referencing different tables. So you could have 2 foreign keys from racoon(pk)
, one referencing wild(pk)
and the other referencing domestic(pk)
. Something like:
CREATE TABLE raccon
( mammal_id INT PRIMARY KEY
, FOREIGN KEY (mammal_id)
REFERENCES domestic (mammal_id)
, FOREIGN KEY (mammal_id)
REFERENCES wild (mammal_id)
) ;
(assuming all tables have mammal_id
as the primary key)
-
Is that Oracle? Can you add SQL Server to your answer so I'm doing it correctly? I forgot to add the tag.JustBeingHelpful– JustBeingHelpful2013年11月20日 16:34:44 +00:00Commented Nov 20, 2013 at 16:34
-
1The syntax is valid for both Oracle and SQL-Server: SQL-Fiddleypercubeᵀᴹ– ypercubeᵀᴹ2013年11月20日 16:37:40 +00:00Commented Nov 20, 2013 at 16:37
-
Learn something new every dayJustBeingHelpful– JustBeingHelpful2013年11月20日 16:43:32 +00:00Commented Nov 20, 2013 at 16:43
Explore related questions
See similar questions with these tags.
racoon(pk)
, one referencingwild(pk)
and the other referencingdomestic(pk)
would solve this. Right?