Entity Relationship diagram interpretations of a inventory database

Viewed 44

This is a Entity relationship diagram of Inventory database. ER Diagram How we can interpret it? my idea is like there is list of product with Dealer, customer orders the product. supplier supplies it. customer purchases it. But i think i'm not able to perfectly interpret it. what does the above ER diagram shows.

1 Answers

This diagram says that "products" are "purchased" from "suppliers" and "ordered" by customers (which are only named in the orders table and do not have a separate entity).

Related