Which relationship can be found in a good relational database?
1: 1:M relationship
2. 1:1 Relationship
M:N -> not used in this type of database.
How is a 1:M relationship easily implemented?
By putting the primary key of the 1 side in the table of the many side as a foreign key.
What does a 1:1 relationship ensure?
That two entity sets are not placed in the same table when they should not be.
Why is a 1:1 relationship not common in a good relational database?
It might indicate that the entity components are not defined properly -> could indicate that the two entities actually belong in the same table.
What is a composite entity?
An entity (table) that is created to link the tables that were originally related in an M:N relationship.