copying records from one table to another

N

nzquikster

I have two tables. one has a list of all parts and their information. the
other one has a bill of materials with just the part number. what i want to
do is populate the information for each part in the bill of materials by
using the table with all the parts. how would i do this?
 
J

Jerry Whittle

You don't actually want to move records from one table to the other. Rather
you want join the two tables in a query to gather all the data that you need.
You probably want to join on the part number fields. Hopefully the part
number is unique (AKA the primary key field) in the parts table or you may
have some incorrect results.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top