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 just want to know what is a parent table and what is a child table in databases. Can you please show me an example so I understand how it works please.

Thank You

share|improve this question
sorry, but is google really that hard to use? – Dagon Oct 24 '11 at 19:36
2  
Been googling, not really explaining it really well bud – BruceyBandit Oct 24 '11 at 19:39

3 Answers

up vote 7 down vote accepted

Child tables and parent tables are just normal database tables, but they're linked in a way that's described by a parent-child relationship.

It's usually used to specify where one table's value refers to the value in another table (usually a primary key of another table).

For example, imaging a news article. This could be represented by a table called articles and has fields for id, title, content, published_date and author. But instead of placing a name in the author field, you could instead put the ID value of a child table, maybe called authors, that has information on authors such as id, name, and email_address.

Therefore, if you need to update an author's name, you only need to do so in the authors table; because the articles table (or parent table) only contains the ID the author record.

Hope this helps you understand better.

share|improve this answer
1  
If you have multiple articles pointing to one author, wouldn't the authors table be the parent table? – RoToRa Oct 25 '11 at 13:04

A child table tends to be one where it has one or more foreign keys pointing at some other table(s). Note that a child table can itself be a parent to some OTHER table as well.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.