19

I have a Transactions table which has a column Customer ID (foreign Key) and a Customer table having ID (primary key).

How do I show in an the relation between the two tables showing that the Customer ID is the foreign key of Transactions which is the primary key in Customer?

philipxy
  • 797
  • 1
  • 7
  • 18
MK Singh
  • 299
  • 1
  • 2
  • 3

5 Answers5

21

ER Diagrams were originally used only to represent the ER model. The ER model does not use foreign keys to represent relationships. It uses lines between boxes. The lines have some kind of indicator for cardinality at either end or both ends. Sometimes, a relationship will be indicated separately by a diamond.

Today, more than half of the ER diagrams floating around are really diagrams of a relational model, and not of an ER model. A relational model has the foreign keys included in the tables, and these serve to implement the relationships which the ER model identifies. And a relational model will have an extra table, often called a "junction table" between two entity tables that are linked by a many-to-many relationship. This junction table contains two or more foreign keys.

There are many ways to represent a relational model. Perhaps the simplest is the "Relationship Diagram" that MS Access can produce from a completed database. This will be fairly complete, if the database builder has identified the foreign keys.

There are many tools that are more sophisticated than MS Access for making diagrams on a larger scale. Some of these are used before building the database. Some are used after.

Walter Mitty
  • 4,416
  • 21
  • 22
6

When drawing ER diagrams, I have used the following graphical convention: Label the relationship lines with the foreign key column name(s), like so:

Example ERD

This makes it clear which column in the child table is the foreign key to the parent table. Indicating primary key status can be done by underlining the attribute in question.

What may be more useful than this is a naming convention that makes it clear what is the primary key of a table (easily done if you use surrogate keys by convention) and what is a foreign key column.

Some relational model diagrams also include a key participation label to the left of the column names in the list of columns (e.g. "PK", "FK1", "FK2",...) which can help especially if you have composite keys.

Joel Brown
  • 12,604
  • 2
  • 32
  • 46
6

enter image description here

I prefer this format, using "crows feet" to illustrate the many-to-one joins

dlink
  • 231
  • 2
  • 3
4

Many years later, please mind the different notations of ER diagrams, the question is thus not precise enough.

Have a look at all answers at:

One answer here even states that the Chen notation is the ERD, while Crow Foot notation is said to be an EAD (Entity Attribute Diagram), see @JoshuaGuttman.

The Chen notation does not show explicitly the FK relations, as the accepted answer already explains, while other notations can do this.

If you take for example the Crow Foot or Baker's notation instead, you might take the "most precise" answer of @dlink where the lines lead exactly to the FKs. Then it is still unclear what to do with composite FKs leading to composite PKs, and probably because of that, professional programs simply do not graphically link the line endings with the FKs. Then, naming is all you can refer to, which is enough anyway if you keep strictly to a naming convention (like CustomerID to Customer.ID, or other rules). See for example Visual Paradigm at What is Entity Relationship Diagram (ERD)?.

vp erd

questionto42
  • 366
  • 1
  • 2
  • 12
1

This page, by LucidChart has a nice write up on how ERD should look. Under Physical ERD Symbols, it shows how to represent keys:

Entity-Relationship Diagram Symbols and Notation

questionto42
  • 366
  • 1
  • 2
  • 12
dlink
  • 231
  • 2
  • 3