I am trying to layout an Entity Relationship Diagram that involves inventory. All of the items make up one big inventory, but they can be split throughout multiple locations. For example: 20 Cases of Item A are at Location 1 and 5 Cases of Item A are at Location 2.
If they click into an Item they need to be able to see at what locations it is at and how many at each location.
If they click into a Location they need to be able to see what items are at that location and how many.
I know one of my tables is going to be 'Item' and I know another one of my tables is going to be 'Location'
However, I am having trouble figuring out how to branch off from here with join tables and an Inventory table that actually keeps track of each item and how many are throughout each location.
Can someone please help get me started. Anything will help.