Difficulty: Easy
Correct Answer: One relation is created.
Explanation:
Introduction:
Converting an entity–relationship (ER) design into a relational schema is a foundational database skill. A common question is how many relations (tables) result from mapping a single regular, also called strong, entity. Understanding this baseline helps you reason about more complex cases such as weak entities, multivalued attributes, and associative entities.
Given Data / Assumptions:
Concept / Approach:
The standard rule is straightforward: one regular entity becomes one base relation. All simple attributes of the entity become columns of that relation. The entity’s identifier becomes the relation’s primary key. Only if additional modeling features exist (for example, multivalued attributes) would extra relations be introduced, but those are separate steps, not part of the core strong-entity mapping.
Step-by-Step Solution:
Create a relation named after the entity (or a clear, singularized name).Place every simple attribute as a column in that relation.Designate the entity identifier as the primary key of the relation.Do not create extra relations unless you encounter multivalued attributes, weak entities, or relationships requiring separate tables.
Verification / Alternative check:
Check any introductory database textbook procedure: strong entity to single relation is the canonical first mapping step. Any departure implies the presence of special attributes or relationships that trigger additional rules.
Why Other Options Are Wrong:
Common Pitfalls:
Accidentally creating additional tables for simple attributes or failing to declare the appropriate primary key after mapping.
Final Answer:
One relation is created.
Discussion & Comments