How to make two tables from one table

G

GL

Hi
I have a database and I would like to modify the structure of a table.
The existing form of the table is:
ResourceCode, ProjectCode, ResourceCost, ResourceDescr, ProjectStartDate,
ProjectEndDate, key on ResourceCode and ProjectCode.
What I would like to have is two tables:
ResourceCode, ResourceCost, ResourceDescr, key on ResourceCode.
and
ProjectCode, fkResourceCode, ProjectStartDate, ProjectEndDate, key on
ProjectCode.
The two tables are joined on ResourceCode and fkResourceCode.
Because I have a lot of data on the first table I want to make the other two
ones and keep the existing data.
Do you know how?

Thank you

GL
 
B

Bob Miller

Create two Make Table queries of the data you want in each table and ru
them. Or, you can copy the original table and delete the unwante
information in each table to reflect your wants.
 

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