I have a type table that contains 3 values
- An ID
- A String value
- And a int
The first table that i insert into takes only the string value
The second table is where my question lies I need to insert into it the ID in the type table, the int and finally the corolating ID from the first table
So Table one would look like this after the import
| Table1ID | String |
|---|---|
| Table1ID1 | String1 |
| Table1ID2 | String2 |
And table 2 after the import
| Table2ID | IDFromType | Table2ID | IntFromType |
|---|---|---|---|
| Table2ID1 | IDFromType1 | Table1ID1 | IntFromType1 |
| Table2ID2 | IDFromType2 | Table1ID2 | IntFromType2 |

