When you have two entities ask yourself these questions.
- How many entities of B can belong to entity A?
- How many entities of A can belong to entity B?
Of the answer to question 1 is many and the answer to question 2 is one or possibly none you are dealing with a one-to-many relationship.
A one-to-many (1:N) relationships is when for one instance of entity A, there are zero, one, or many instances of entity B, but for one instance of entity B, there is only one instance of entity A.
An example of a 1:N relationships is
a department has many employees
each employee is assigned to one department