T
Tor Inge Rislaa
I have 3 tables, where Table1 should link in Table2 and Table3. I need an
example on how to do this.
Table1
Table1_ID, Table2_ID, Table3_ID (Table1_ID is an autonumber)
Table2
Table2_ID, Description
Table3
Table3_ID, Description
I want to insert records into Table1 and I need a query that can feed the
data according to:
For each ID in Table2 add every ID in Table3
If both Table2 and Table3 contained 3 ID's the result should look like:
Table1_ID, Table2_ID, Table3_ID
1 1 1
2 1 2
3 1 3
4 2 1
5 2 2
6 2 3
7 3 1
8 3 2
9 3 3
Any ideas
example on how to do this.
Table1
Table1_ID, Table2_ID, Table3_ID (Table1_ID is an autonumber)
Table2
Table2_ID, Description
Table3
Table3_ID, Description
I want to insert records into Table1 and I need a query that can feed the
data according to:
For each ID in Table2 add every ID in Table3
If both Table2 and Table3 contained 3 ID's the result should look like:
Table1_ID, Table2_ID, Table3_ID
1 1 1
2 1 2
3 1 3
4 2 1
5 2 2
6 2 3
7 3 1
8 3 2
9 3 3
Any ideas