Hi I have included the start of my database basicly it will tell me locations of certain jobs, which include part number operations, I need to know if im attempting this project correct or not.
Thanks in advance
This is pretty hard to explain in just a few words. I studied database design for an entire semester at school. It was complete with a 300 page textbook on the subject! But I will give it a try.
One way to approach this is to model your tables after the situation. First try to find each of the entities. From what your telling me, this database would have a Job table, a part table, and a location table.
No you need to ask yourself, "How do these relate?". Are there many jobs to many locations? Are there many parts to many jobs? If so, then you have two many-to-many relationships.
Another, more simple relationship, is the one-to-many. For instance, a person may have many phone numbers; home, cell, work, fax, etc. In turn, each phone number would only have a single person. This would be a one-to-many relationship.
For more information, I suggest doing a web search (or Google it, as they say now) on one-to-many and many-to-many relationships. Also I suggest searching on "normalization" and "database design".