skwilliams
Registered User.
- Local time
- Today, 12:31
- Joined
- Jan 18, 2002
- Messages
- 516
I have a table with data populated daily from another system. The table displays data this way.
FName, LName, Address, City, State, Postal, Cat, Sample1, Sample2, Sample3, etc.
Each record can contain up to 10 samples.
I would like to store the data in two tables like this so each sample would have its own record in the child table.
tblSampleMain
pkID, FName, LName, Address, City, State, Postal, Cat
and
tblSamples
pkID, fkID, Samples
with a relationship between the tblSampleMain.pkID and tblSamples.fkID.
Is there an easy way to append this data from the current table to the new tables as listed.
FName, LName, Address, City, State, Postal, Cat, Sample1, Sample2, Sample3, etc.
Each record can contain up to 10 samples.
I would like to store the data in two tables like this so each sample would have its own record in the child table.
tblSampleMain
pkID, FName, LName, Address, City, State, Postal, Cat
and
tblSamples
pkID, fkID, Samples
with a relationship between the tblSampleMain.pkID and tblSamples.fkID.
Is there an easy way to append this data from the current table to the new tables as listed.