Reputation: 5
ER modeling below situation
" a car insurance company whose customers own one or more cars each. Each car has associated with it zero to any number of recorded accidents. Each insurance policy covers one or more cars, and has one or more premium payments associated with it. Each payment is for a particular period of time, and has an associated due date, and the date when the payment was received"
Above situation, First, I think 'car' is participated partially and 'accident' is participated totally. But the answer image is reversed. Also, I don't know WHY 'car' and 'accident' is not identifying relationship. I think accident is dependent on car.
Upvotes: 0
Views: 145
Reputation: 142298
To heck with terminology; let's think about the data:
Not needed: Customers (1:many) Cars -- because of Customers->Policys->Cars
Cars (1:many) Accidents (allowing zero takes no extra effort)
Customers (1:many??) Policies
Policies (1:many) Cars
Policies (1:many) Payments
Upvotes: 0