InterviewSolution
Saved Bookmarks
| 1. |
Relation and difference between primary and foriegn key |
| Answer» Primary key uniquely identify a record in the table. Foreign key is a field in the table that is primary key in another table. By default, Primary key is clustered index and data in the database table is physically organized in the sequence of clustered index. | |