Multi Table Insert Distinct
I have a set of data:
ID Name Address
1 Tom 1 The Walk
1 Tom 2 The Run
1 Tom 3 The Sprint
I was hoping to use a multi table insert to insert this information but I wanted to distinct the ID and Name in one table and enter 3 values in the other table. I don't think this is possible. Is there some syntax I am missing that would enable me to do this?
Richard