I'm a javascript developer, but all the examples I can come across are either too nuanced or specific for my needs, so I'm hoping to find a simple script to take the following table which has a column of linked records from a third table:
Table_1
ID | Linked |
1 | A,B |
2 | B,C,D |
And spit out the following table:
Table_2
ID | Each_Link |
1 | A |
1 | B |
2 | B |
2 | C |
2 | D |
Thanks!