Which database model provides the graphical representation of the entity relationship diagram?

An entity relationship diagram (ERD), also known as an entity relationship model, is a graphical representation that depicts relationships among people, objects, places, concepts or events within an information technology (IT) system. An ERD uses data modeling techniques that can help define business processes and serve as the foundation for a relational database.

Importance of ERDs and their uses

Entity relationship diagrams provide a visual starting point for database design that can also be used to help determine information system requirements throughout an organization. After a relational database is rolled out, an ERD can still serve as a reference point, should any debugging or business process re-engineering be needed later.

However, while an ERD can be useful for organizing data that can be represented by a relational structure, it can't sufficiently represent semi-structured or unstructured data. It's also unlikely to be helpful on its own in integrating data into a pre-existing information system.

How to create an ERD

ERDs are generally depicted in one or more of the following models:

  • A conceptual data model, which lacks specific detail but provides an overview of the scope of the project and how data sets relate to one another.
  • A logical data model, which is more detailed than a conceptual data model, illustrating specific attributes and relationships among data points. While a conceptual data model does not need to be designed before a logical data model, a physical data model is based on a logical data model.
  • A physical data model, which provides the blueprint for a physical manifestation -- such as a relational database -- of the logical data model. One or more physical data models can be developed based on a logical data model.

There are five basic components of an entity relationship diagram. Similar components will be designated by the same shape. For example, all entities types might be enclosed in a rectangle, while all attributes are enclosed in a diamond. The components include:

  1. Entities, which are objects or concepts that can have data stored about them. Entities refer to tables used in databases.
  2. Attributes, which are properties or characteristics of entities. An ERD attribute can be denoted as a primary key, which identifies a unique attribute, or a foreign key, which can be assigned to multiple attributes.
  3. The relationships between and among those entities.
  4. Actions, which describe how entities share information in the database.
  5. Connecting lines
Which database model provides the graphical representation of the entity relationship diagram?
An entity relationship diagram showing relationships between sales reps, customers and product orders.

For example, an ERD representing the information system for a company's sales department might start with graphical representations of entities such as the sales representative, the customer, the customer's address, the customer's order, the product and the warehouse. (See diagram above.) Then lines or other symbols can be used to represent the relationship between entities, and text can be used to label the relationships.

A cardinality notation can then define the attributes of the relationship between the entities. Cardinalities can denote that an entity is optional (for example, a sales rep could have no customers or could have many) or mandatory (for example, there must be at least one product listed in an order.)

The three main cardinalities are:

  1. A one-to-one relationship (1:1). For example, if each customer in a database is associated with one mailing address.
  2. A one-to-many relationship (1:M). For example, a single customer might place an order for multiple products. The customer is associated with multiple entities, but all those entities have a single connection back to the same customer.
  3. A many-to-many relationship (M:N). For example, at a company where all call center agents work with multiple customers, each agent is associated with multiple customers, and multiple customers might also be associated with multiple agents.

While there are tools to help draw entity relationship diagrams, such as computer-aided software engineering (CASE) tools, some relational database management systems (RDBMS) also have design capabilities built in.

This was last updated in September 2019

Continue Reading About Entity Relationship Diagram (ERD)

  • Information management primer on entity relationship diagrams
  • What are the potential benefits of a conceptual data model?
  • Data modeling techniques explained
  • How to design ERDs

Dig Deeper on Database management

  • Which database model provides the graphical representation of the entity relationship diagram?
    data abstraction

    Which database model provides the graphical representation of the entity relationship diagram?

    By: Robert Sheldon

  • Which database model provides the graphical representation of the entity relationship diagram?
    SSADM (Structured Systems Analysis and Design Method)

    Which database model provides the graphical representation of the entity relationship diagram?

    By: Ben Lutkevich

  • Which database model provides the graphical representation of the entity relationship diagram?
    Business Process Modeling Notation (BPMN)

    Which database model provides the graphical representation of the entity relationship diagram?

    By: Gavin Wright

  • Which database model provides the graphical representation of the entity relationship diagram?
    data modeling

    Which database model provides the graphical representation of the entity relationship diagram?

    By: Craig Stedman

What is an entity relationship model diagram?

An entity relationship diagram (ERD), also known as an entity relationship model, is a graphical representation that depicts relationships among people, objects, places, concepts or events within an information technology (IT) system.

Is ER diagram a data model?

Data modeling is a technique to document a software system using diagrams and symbols. It is used to represent communication of data. The highest level of abstraction for the data model is called the Entity Relationship Diagram (ERD).

What is entity relationship model in DBMS?

Entity Relationship Diagram – ER Diagram in DBMS. An Entity–relationship model (ER model) describes the structure of a database with the help of a diagram, which is known as Entity Relationship Diagram (ER Diagram). An ER model is a design or blueprint of a database that can later be implemented as a database.

How are relationships between entities represented in the relational data model?

In a relational database a relationship between entities is implemented by storing the primary key of one entity as a pointer or "foreign key" in the table of another entity. There is a tradition for ER/data models to be built at two or three levels of abstraction.