Lecture2.pdf

💡Recall

The Relational Data Model

Relations

Syntax

Example

Schema example for the Students relation:

Students[name, year_of_study, email]

or notation:

Students(name: string, year_of_study: integer, email: string)

Instance example for the Students relation:

Screenshot 2022-10-13 at 10.36.57.png

Integrity Constraints

Integrity constraints (restrictions)

Domain constraints

Key constraint

e.g.

  1. In the Doctors[dep, did, lastname, firstname] relation, we can define the constraint: a doctor is uniquely identified by his / her department and did, i.e., 2 different doctors can have the same department or the same did, but not both; the key is the group of attributes {dep, did}

  2. Books[author, title, publisher, year]

    Screenshot 2022-10-13 at 10.42.42.png

    a possible key is the group of attributes {author, title, publisher, year}; in such a case, the schema can be augmented to include another attribute (with distinct values; the latter can be automatically generated when records are added)

  3. Books[author, title, publisher, year]

    Screenshot 2022-10-13 at 10.50.15.png

    {bid} can now be chosen as the key - two different tuples will always have different values in the bid column

    the user must be careful not to define a key constraint that prevents the storage of correct tuple sets

    e.g. if {title} is declared to be a key, the Books relation can't contain tuples describing different books with the same title

Primary key and Candidate keys

Foreign key constraints

e.g.

In the figure below, A is defined as a foreign key in R2, it refers to R1's key

R1 and R2 need not be distinct

Screenshot 2022-10-13 at 11.09.39.png

Departments[did, name, budget]