Conteúdo do Curso
Relational Database and Normalization
Relational Database and Normalization
Structure. 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.
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:
Obrigado pelo seu feedback!