Hi,
Im slowly learning about MS access (and databases in general). But I think I have a hard time grasping how to think and use access.
Right now my goal is to create a database over all devices. So, then I try to think about what I want to keep track off. In my case itīs the following:
ID - Autogenerate (primary key)
Manufacture
Device
Model
Serial number
IMEI
Status: Working, broken
Location: Warehouse, office etc
Who has it: Staff name
This is what i imagine a part of the end result would look like. But from my understanding I should break this table up? and later on join tables together to create a "final"_tbl.
ID Manufacture Device Model Serial/product number IMEI Status Location Who has it 1 Apple Mobile 8 123456 9876454 Working Warehouse 2 Apple Mobile 8+ 321654 7895464 Broken 3 Samsung Mobile S8 112233 4455664 Working Sam 4 Apple Computer Air 447711 8528522 Working John
Device_tbl Only information about the specific device (maybe I could include status here aswell?)
ID Manufacture Device Model Serial/product number IMEI
Location_tbl Table with all the different location it could be?
Staff_tbl Name of employees who might be borrowing it?
I hope It was possible to understand my point. I would love the hear your opinion about this, and how I can improve.