Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Structure. Primary Key and Foreign Key
course content

Course Content

Relational Database and Normalization

Structure. Primary Key and Foreign KeyStructure. Primary Key and Foreign Key

Primary and Foreign Keys

In relational databases, the foundation lies in tables and their relationships, which are often established using Primary Keys and Foreign Keys.

  • A Primary Key (PK) serves as a unique identifier for a record within a table.
  • A Foreign Key (FK) references the Primary Key of a different table, connecting records between them.

Take, for instance, two tables: "student" and "group." In the "student" table, each record might have details such as id (representing the student's ID), name, surname, age, and group_id (which is a foreign key pointing to the primary key of the “group” table). The “group” table, on the other hand, might contain id (indicating the group's ID), name, and grade.

Student Table
Image 2

From this, it's evident that both John and Kesha are members of the BG1 group, as indicated by their foreign key referencing the group id. The BG4 group has one student, Emma, while the MG2 group currently has no students associated with it.

Such a structure facilitates the use of JOIN operations in database queries.

Take a closer look at the “group-student” entity-relationship (ER) diagram:

Student and Group relations
1. What is a primary key?
2. What is a foreign key?

question-icon

What is a primary key?

Select the correct answer

question-icon

What is a foreign key?

Select the correct answer

Everything was clear?

Section 2. Chapter 1
some-alt