Extending the parent-child relationship - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:32:14Z http://stackoverflow.com/feeds/question/480902 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/480902/extending-the-parent-child-relationship 0 Extending the parent-child relationship cmsjr 2009-01-26T18:49:35Z 2009-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#481578 0 Answer by Riho for Extending the parent-child relationship Riho 2009-01-26T22:06:29Z 2009-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>&lt;Persons&gt; &lt;Person ID="1" Name="Minu eesnimi" Surname="Minu perekonnanimi" Picture="0" Sex="M"&gt; &lt;Event Name="Birth" Prefix="" Location="Tallinn" Date="14.01.1963"&gt;&lt;![CDATA["Ilusal jaanuarihommikul"]]&gt; &lt;/Event&gt; &lt;Event Name="Death" Prefix="" Location="" Date=""/&gt; &lt;Father ID="2" Type="P&amp;#228;ris"/&gt; &lt;Mother ID="3" Type="P&amp;#228;ris"/&gt; &lt;Spouse ID="4"/&gt; &lt;/Person&gt; ... </code></pre> <p>String XPath="child::*/child::Person[child::Father[@ID=\""+String(ID) +"\"] and child::Mother[@ID=\""+String(Spouse)+"\"]]"; etc.</p>