Hey all,
So i've spent a few hours trying to find a way to do this online to no avail, hopefully you can help me out.
I have a database which in part consists of 6 joined tables. Each is joined by a seperate ID field.
IE:
Table A:
ID1 (primary key)(used to identify information in TableA)
ID2 (Joined to Table B)
Table B:
ID2 (primary key)(used to identify the information in TableB, and Joined to TableA)
ID3 (Joined to Table C)
Table C:
ID3 (primary key)(Identifieing information in TableC, and joined to TableB)
ID4 (Joined to Table D)
And so forth.
The Problem is, we have to copy everything in the second from the "Top" table, which is laid out sorta like this..
Table D
ID5 (primary key) Linked to Table C
ID6 Linked to Table E
ID 7
ID 8 Linked to Table F
Basically we need to copy all of the values in Table D, change one value, and then add them back in to the table. Unfortunately, when we go to do this, because of the joins it won't let us create a new record.
I feel like there is probably a simple solution, but I can't seem to find it. We've tried just appending to Table D with no luck, and even starting from the bottom and creating duplicates of everything, but in order to do that it seems you have to simultaneously create a new record for each table all the way up.
Is there something simple I'm missing?
(Sorry about not being able to just post a screenshot or anything, hopefully it makes sense.)
Thanks so much for your time