I'm building a simple database for inventory where I work and I wanted to get some feedback and suggestions on a database schema for the project.
Currently I have one table, and I'm thinking more tables would help with the flow of things.
The table is called instock and has a date, description, part#, serial#, #used, used for, used at, initials, comments, totalUsed, and totalStock.
I'm thinking that I should break up the tables by categories (e.g. computers, pc parts, plc parts, radio parts, office supplies, legacy parts, etc.) but am not sure how to implement it. How should I do it?
I'm also wondering if I should have separate tables for in stock and used stock, but I think I can just use a binary field to say if something is in stock. The problem with that though is if part of what is recorded is in stock...... ???
Any and all feedback will be helpful. Thanks.