I have a CSV file containing linked IDs eg 1,2,3
I have a table with two columns ID and LinkedID
I would like to pass the CSV string in and have the table updated so that each relationship is added as a new record
ID,LinkedID
1,2
1,3
2,1
2,3
3,1
3,2
Any ideas?
Thanks
Josh
I have a table with two columns ID and LinkedID
I would like to pass the CSV string in and have the table updated so that each relationship is added as a new record
ID,LinkedID
1,2
1,3
2,1
2,3
3,1
3,2
Any ideas?
Thanks
Josh
Comment