Is it possible for a table to inherit on-to-many sub tables? (I think thats how its meant to be worded :P) In others words:
PersonBase can be PersonA and/or PersonD and/or PersonC
However in this particular case it needs to be possible for PersonBase to exist multiple times as PersonD (there are reasons for it), could I do it this way? Or should I create another table say TableD such that PersonBase is a PersonD which has a one to many relationship with TableD. However I would prefer to be able to do it so that PersonBase can be multiple PersonDs if possible.
Thanks All
P.S. I apologize if my question seems naive.