Extending the parent-child relationship - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T11:32:14Zhttp://stackoverflow.com/feeds/question/480902http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/480902/extending-the-parent-child-relationship0Extending the parent-child relationshipcmsjr2009-01-26T18:49:35Z2009-01-26T22:06:29Z
<p>Given the one-table design given below how would the following best be queried </p>
<ul>
<li>The set of extended family members given a folk id </li>
<li>The set of common ancestors given two folk ids </li>
<li>The set of descendants given a folk id</li>
</ul>
<p><strong>*Bonus</strong> 1st cousins, twice removed given a folk id</p>
<p>Table Folk</p>
<pre><code>FolkID (PK)
MotherID (FK to folkid)
FatherID (FK to folkid)
Name
Gender
</code></pre>
http://stackoverflow.com/questions/480902/extending-the-parent-child-relationship/481578#4815780Answer by Riho for Extending the parent-child relationshipRiho2009-01-26T22:06:29Z2009-01-26T22:06:29Z<p>Someone has to build a familytree application?
I did something similar some time ago, using XML and XPath:</p>
<pre><code><Persons>
<Person ID="1" Name="Minu eesnimi" Surname="Minu perekonnanimi" Picture="0" Sex="M">
<Event Name="Birth" Prefix="" Location="Tallinn" Date="14.01.1963"><![CDATA["Ilusal jaanuarihommikul"]]>
</Event>
<Event Name="Death" Prefix="" Location="" Date=""/>
<Father ID="2" Type="P&#228;ris"/>
<Mother ID="3" Type="P&#228;ris"/>
<Spouse ID="4"/>
</Person>
...
</code></pre>
<p>String XPath="child::*/child::Person[child::Father[@ID=\""+String(ID)
+"\"] and child::Mother[@ID=\""+String(Spouse)+"\"]]";
etc.</p>