I have imported a table which is very big (over 200 columns). I want to split this table into two linked (in one-to-one relationship) by an autonumber ID. Is there an efficient way to do this? I would assume I can't write out table 2 until table 1 has been completely written and the autonumber IDs assigned. Or is there a way to do it in a single query?
Table 1
ID autonumber
Data
Table 2
ID links to ID in table 1
Data
Table 1
ID autonumber
Data
Table 2
ID links to ID in table 1
Data