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
|
|
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 Therefore, if you need to update an author's name, you only need to do so in the Hope this helps you understand better. |
|||||
|
|
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. |
|||
|
|
|
Check these links. http://www.w3schools.com/sql/sql_join.asp and http://www.sialnity.com/2010/08/mysql-tutorial-displaying-data-from-multiple-tables/ |
|||
|
|