Term of the Day
“Primary Key”
Definition — What is a Primary Key?
In the context of a relational database, a Primary Key is used as a unique identifier to quickly parse data within the table. None of the fields that are part of the primary key can contain a NULL value. In fact, since a table can easily contain thousands of records (including duplicates), a primary key is necessary to ensure that a table record can always have only one primary key. The choice of a primary key in a relational database often depends on the preference of the administrator. It is possible to change the primary key for a given database when the specific needs of the users change. Primary keys are used along with the foreign keys to refer to various tables and form referential integrities. Each table in the database has a column or two specifically for the primary key.
Primary Key Example: Let say a hospital has a patient's table that contains a record of each patient. The patient ID number( It a unique id) is a good choice for a primary key in the patient's table. The patient's first and last name are not good choices reason being there is always the chance that more than one patient might have the same name. Other poor choices for primary keys include ZIP code and State name all of which can change or represent many people. The thumb rule is an identifier used as a primary key that must be unique.