LU03S2 – Proposed solution
The following entities have been identified for the scenario:
1. Continent
- ContinentID (Primary Key)
- ContinentName
2. Country
- CountryID (Primary Key)
- CountryName
- ContinentID (Foreign Key)
3. Trip
- TripID (Primary Key)
- CountryID (Foreign Key)
- StartDate
- EndDate
- Price
Relationships
- A continent can have many countries (1:N).
- A country belongs to exactly one continent (N:1).
- A country can have many trips (1:N).
- A journey takes place in exactly one country (N:1).

