Hi, I have 3 datasets each with a column containing zip codes. I want to use ETL to create a new dataset with 3 columns, all containing the zip codes from each input lined up.
Input:
Dataset 1 Dataset 2 Dataset 3
1 2 1
2 3 3
3 5 4
4 6 5
Output:
D1 D2 D3
1 1
2 2
3 3 3
4 4
5 5
6
Thank you