I have a problem joining two of my dataset. One main problem is there is no primary key for the two dataset since there are duplicate records with both sets. I'm trying to get supplemental data from the Table 2 to the Table 1.
Table 1:
Table 2:
| Record | Details |
| 1 | Detail 1 |
| 2 | Detail 2 |
| 2 | Detail 3 |
| 2 | Detail 4 |
| 3 | Detail 5 |
Result should be like this:
| Record | Details |
| 1 | Detail 1 |
| 1 | |
| 2 | Detail 2 |
| 2 | Detail 3 |
Thanks for the help.