On many to many relationship between two entity, there will be a junction entity in between.
My question is, can the junction entity have relationship with another entity? Thank you! (:
|
On many to many relationship between two entity, there will be a junction entity in between. My question is, can the junction entity have relationship with another entity? Thank you! (: | ||||
feedback
|
|
Sure it can. Typically a junction entity will be a "weak" entity, meaning basically that it's dependent on another entity. But it's perfectly legal for that weak entity to have a relationship with another entity. Say, for example, you have a simple auditing system. The audit is made up of sections. Each section is predefined in an separate table. So you have Then you have an | ||||
|
feedback
|
|
Yes. If the new entity is related to the relationship instead of the two parent entities, then it is definitely possible. One example :Let's say you want to track the payments made for a particular purchase (of a product) by a customer. You will have the three tables.
The Payments table above is in a parent-child relationship with the Purchase table (which is a junction entity). Other relationships (such as many-to-many)are equally valid. | ||||
|
feedback
|