InterviewSolution
Saved Bookmarks
| 1. |
What is a primary key in computer |
|
Answer» In the relational model of databases, a PRIMARY key is a specific choice of a minimal SET of attributes (columns) that uniquely specify a tuple (row) in a relation (table). Informally, a primary key is "which attributes identify a record", and in SIMPLE cases are SIMPLY a single attribute: a unique ID. |
|