The Entity-Relationship Model

Read this chapter and pay attention to the main concepts, kinds of entities, types of attributes, and types of keys. Take notes on the three relationship types and complete the exercise at the end of the chapter.

The Entity Relationship Data Model

The entity relationship (ER) data model has existed for over 35 years. It is well suited to data modelling for use with databases because it is fairly abstract and is easy to discuss and explain. ER models are readily translated to relations. ER models, also called an ER schema, are represented by ER diagrams.

ER modelling is based on two concepts:

  • Entities, defined as tables that hold specific information (data)
  • Relationships, defined as the associations or interactions between entities

Here is an example of how these two concepts might be combined in an ER data model: Prof. Ba (entity) teaches (relationship) the Database Systems course (entity).

For the rest of this chapter, we will use a sample database called the COMPANY database to illustrate the concepts of the ER model. This database contains information about employees, departments and projects. Important points to note include:

  • There are several departments in the company. Each department has a unique identification, a name, location of the office and a particular employee who manages the department.
  • A department controls a number of projects, each of which has a unique name, a unique number and a budget.
  • Each employee has a name, identification number, address, salary and birthdate. An employee is assigned to one department but can join in several projects. We need to record the start date of the employee in each project. We also need to know the direct supervisor of each employee.
  • We want to keep track of the dependents for each employee. Each dependent has a name, birthdate and relationship with the employee.

Source: Adrienne Watt, https://opentextbc.ca/dbdesign01/chapter/chapter-8-entity-relationship-model/
Creative Commons License This work is licensed under a Creative Commons Attribution 4.0 License.