Which type of relationship requires an intersection table?
-
Many-to-One (M:1)
-
One-to-One (1:1)
-
Many-to-Many (M:M)
-
One-to-Many (1:M)
C
Correct answer
Explanation
A Many-to-Many relationship cannot be represented directly with foreign keys in a standard relational database without duplication. An intersection (junction) table containing foreign keys referencing both tables is required to resolve it.