Difficulty: Easy
Correct Answer: One-to-Many Relationship
Explanation:
Introduction / Context:Understanding relationship cardinalities is essential for correct schema design, foreign key placement, and query formulation.
Given Data / Assumptions:
Concept / Approach:A “one-to-many” relationship connects one parent to many children. Typical mappings place the foreign key on the many side (child table) pointing to the one side (parent table).
Step-by-Step Solution:
Interpret the phrase “single entity instance … related to many.”Match the description to the standard cardinality term: one-to-many.Select the option that states “One-to-Many Relationship.”Verification / Alternative check:Common examples: one Customer has many Orders; one Department has many Employees.
Why Other Options Are Wrong:
Common Pitfalls:Misplacing foreign keys by putting them on the one side. In relational design, the many side holds the foreign key to the one side.
Final Answer:One-to-Many Relationship
Discussion & Comments