Wednesday, March 8, 2017

What is a primary key?

A primary key is a column whose values uniquely identify every row in a table. It should be unique and not null.

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...