Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm working on representing a Parent-Child Relationship in a Database. I"m not sure if it's something you're supposed to do, so I figured I'd ask. My idea is to have a table like this:

Parent Child
  1      2
  2      3
  3      4

Word that work? And if it does work, is it possible to use a recursive php function to get 1 from 4?

something like:

getancestor.php?child=4
{
 $parent = (mysql_query to get $parent)
if($parent != null)
{
 getancestor.php?child=$parent;
else
{
 return;
}
}

Please excuse my sloppy pseudo-code and thanks for the help!

share|improve this question
I hope your primary key is combintion of parent child it should work i just do not understand why you want to do it like this why not use group by – COLD TOLD Apr 12 '12 at 3:34
I'm not sure I understand how Group By would solve this? – NSchulze Apr 12 '12 at 3:39
maybe i do not understand your question correctly but if you have a db and you want to select all the children for a parent why not group children with parent – COLD TOLD Apr 12 '12 at 3:41
Sorry, I wasn't real clear in asking the question. Given just the child, I would like to be able to get it's ancestor. Basically given a leaf node, get the root. I suppose that would've explained it better. – NSchulze Apr 12 '12 at 3:45
it all depends on what you are doing the child on you case may get many parents since your parens can have many children and child can have many parents i think that the idea is for parent not to have same child – COLD TOLD Apr 12 '12 at 3:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.