Foreign Key
Duration: 4 min
This video lesson is available to enrolled students.
AI Summary
An AI-generated summary of this video lecture.
The lecture introduces the concept of Foreign Keys in relational database management systems. The instructor begins with a formal definition, explaining that a foreign key is a column or group of columns that refers to the primary key of the same or another table to establish a relationship. He highlights that the concept of referential integrity stems from foreign key theory. The lesson progresses to practical examples, starting with a student database table containing redundant information about branches. The instructor demonstrates normalization by splitting this into two tables: a student table and a branch table. He identifies `Br_code` as the primary key in the branch table and a foreign key in the student table, drawing a relationship arrow between them. He emphasizes that the foreign key values must exist in the referenced primary key column. Finally, he introduces a second example involving student IDs and marks IDs to further illustrate how foreign keys link tables and enforce data integrity constraints.
Chapters
0:00 – 2:00 00:00-02:00
The instructor defines a foreign key using on-screen text: "A foreign key is a column or group of columns in a relational database table that refers the primary key of the same table or some other table to represent relationship." He introduces the concept of referential integrity. He then presents a large table with columns `Roll no`, `name`, `Age`, `Br_code`, `Br_name`, and `Br_hod_name`. He explains that this table has redundancy. He decomposes it into two tables: a student table (`stu`) with `Roll no`, `name`, `Age`, `Br_code` and a branch table (`Br`) with `Br_code`, `Br_name`, `Br_hod_name`. He marks `Br_code` in the student table as a Foreign Key (FK) and `Br_code` in the branch table as a Primary Key (PK). He draws a red curved arrow from the FK to the PK to show the relationship. He circles the `Br_code` values (101, 101, 101, 102) in the student table to show they reference the branch table. He writes 'stu' and 'Br' next to the tables.
2:00 – 4:18 02:00-04:18
The instructor continues the explanation of the relationship between the tables. He writes "FK <= PK" above the red arrow, signifying that the set of foreign key values must be a subset of the primary key values. He circles the `Br_code` column in the top table and writes "FK <= PK" again to reinforce the constraint. He then transitions to a new example on a blank slide. He draws a table with columns `S_id` and `M_id`. He populates the table with values: `S_id` has 1, 2, 3, 4, 5, 6 and `M_id` has 1, 1, 1, 4, 4, 4. He explains that `M_id` acts as a foreign key referencing a marks table. He draws an arrow from `M_id` to the right to indicate the reference to another table. He emphasizes that the values in the foreign key column (`M_id`) must correspond to valid primary keys in the referenced table, ensuring referential integrity.
The video effectively bridges theoretical definitions with practical database design. By starting with a formal definition and immediately applying it to a normalization example, the instructor clarifies how foreign keys eliminate redundancy. The visual aids, such as the decomposition of the student-branch table and the "FK <= PK" notation, provide clear visual cues for understanding referential integrity constraints. The transition to a second example with `S_id` and `M_id` reinforces the concept that foreign keys are not limited to a single scenario but are a fundamental mechanism for linking related data across different tables in a relational database.