Can anyone explain the links between the tables? like sometimes there's a bubble, other times a rectangle appears and so on.
Asked
Active
Viewed 24 times
2 Answers
0
That’s called Crow’s Foot notation and is a standard way of indicating the cardinality of a relationship between two entities

NickW
- 8,430
- 2
- 6
- 19
0
This is an entity-relationship diagram (ERD) using Crow's foot notation. The lines represent relationships between tables. In this variant of the notation, the *
identifies the primary key of a table.
At each end of a relationship, you will find two symbols:
- closest to the table: a
|
or 3 lines joining. The first means a cardinality of maximum 1 and the second a cardinality maximum N (i.e. "many"). - next to the first symbol, either a
|
or aO
: The first means a mandatory participation (i.e. minimum 1) and the second an optional participation (i.e. minimum is 0).
So, combining the two gives 4 possibilities:

Christophe
- 68,716
- 7
- 72
- 138