Complete the sentence to describe many-to-many relationships.
In a many-to-many relationship, each [1] can be associated with multiple [2].
In many-to-many relationships, each entity can be linked to many other entities, such as students and courses.
Complete the sentence to explain how many-to-many relationships are implemented.
Many-to-many relationships are usually implemented using a [1] table that connects two other tables.A junction table (also called a bridge or associative table) links two tables in a many-to-many relationship by holding pairs of keys.
Fix the error in the explanation about many-to-many relationships.
A many-to-many relationship means one record in a table relates to [1] record in another table.
Many-to-many means one record relates to multiple records on the other side, not just one.
Fill both blanks to describe the role of keys in many-to-many relationships.
The junction table contains [1] keys from each related table as [2] keys.
The junction table uses foreign keys from each related table, and these foreign keys together form the primary key of the junction table.
Fill all three blanks to complete the example of a many-to-many relationship.
In a school database, the [1] table links [2] and [3] tables to show which students take which courses.
The enrollment table is the junction table linking students and courses to represent many-to-many relationships.