G
Guest
I’d like to create a database that will, among other things, track the location of inventory. So far I have three tables as follows:
Table 1 – Location
LocationID (Primary Key)
Location (Lookup Field of Warehouse; Regional Office; District; or Employee)
Table 2 – Inventory
InventoryID (Primary Key)
LocationID
CategoryID
Description
Make
Model
, etc.
Table 3 – Categories
CategoryID (Primary Key)
CategoryName (Vehicle, Uniform, Office Equipment, Tools)
My question is with table 1. If an item in inventory is assigned to an employee, I need to track which employee; if an item is assigned to a Regional Office, I need to track which RO; if an item is assigned to a District, I need to track the District; and if an item is assigned to the warehouse – well, there is only one warehouse. Do I need to create a table each for employee, regional office, and district? How do I relate them back to the Location table?
Table 1 – Location
LocationID (Primary Key)
Location (Lookup Field of Warehouse; Regional Office; District; or Employee)
Table 2 – Inventory
InventoryID (Primary Key)
LocationID
CategoryID
Description
Make
Model
, etc.
Table 3 – Categories
CategoryID (Primary Key)
CategoryName (Vehicle, Uniform, Office Equipment, Tools)
My question is with table 1. If an item in inventory is assigned to an employee, I need to track which employee; if an item is assigned to a Regional Office, I need to track which RO; if an item is assigned to a District, I need to track the District; and if an item is assigned to the warehouse – well, there is only one warehouse. Do I need to create a table each for employee, regional office, and district? How do I relate them back to the Location table?