Can I use a query to insert a field in a table?

Z

ZBC

I have a table (Table1) that I want to add a '#' field.
Table1 has a 'name' field but no '#' field.
I eventually want to delete the 'name' field from table1 and use the '#'
field for relationships..
I have another table (Table2) which carries a one to one unique
relationship between 'name' and '#".
Can I use a query and Table2 to add the '#' field to Table1?
 
B

Bill Crawford

Design a 'Make-Table' query using Table 2 and add the new field(s), from
expressions using table2 fields, to the query. Then, this make-table query
will over write Table1 with the fields you want and associated records.
Rememeber this overwrites the table fields and records in Table1.
 
Z

ZBC

THANK YOU!

Bill said:
Design a 'Make-Table' query using Table 2 and add the new field(s), from
expressions using table2 fields, to the query. Then, this make-table query
will over write Table1 with the fields you want and associated records.
Rememeber this overwrites the table fields and records in Table1.
 

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