Wednesday, March 8, 2017

What is a foreign key?

When a 'one' table's primary key field is added to a related "many" table in order to create a common field which relates the two tables , it is called foreign key in the "many"  table.

No comments:

Post a Comment

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...