What is an entity relationship (ER) diagram? An ER
diagram is a visualization of tables within a database and how they relate to each other. This article contains a few ER diagrams to help you visualize the relationship between a handful of common Commerce database tables.
Throughout this article, you see the words join, relationship, and path. These words are all used to describe how two tables are connected.
ER
DiagramThis ER
diagram represents the relationships among the core tables within a Commerce database. By viewing multiple relationships at once, you can see how data would relate across many tables.
The sections below contain ER
diagrams specific to two tables at a time. To view a diagram and its accompanying description, click on the header for that section.
customer\_entity & sales\_flat\_order
One customer can place many orders. The relationship between these two tables is customer\_entity.entity\_id = sales\_flat\_order.customer\_id
customer\_entity.entity\_id
does not equal sales\_flat\_order.entity\_id
. The first can be thought of as a customer\_id
and the second can be thought of as an order\_id.
Within MBI, if the path between these two tables does not exist, you can create the path within the Data Warehouse tab. When you are ready to create the path, it is defined as follows:
sales\_flat\_order & sales\_flat\_order\_item
One order can contain many items. The relationship between these two tables is sales\_flat\_order.entity\_id = sales\_flat\_order\_item.order\_id
.
Within MBI, if the path between these two tables does not exist, you can create the path within the Data Warehouse tab. When you are ready to create the path, it is defined as follows:
catalog\_product\_entity & sales\_flat\_order\_item
One product can be purchased many items. The relationship between these two tables is catalog\_product\_entity.entity\_id = sales\_flat\_order\_item.product
.
Within MBI, if the path between these two tables does not exist, you can create the path within the Data Warehouse tab. When you are ready to create the path, it is defined as follows: