I have several datasets I want to union in Palantir Foundry. I know what the datasets are ahead of time. The schema of all the datasets is the same (i.e. they have the same column names, and column types).
What is the best way to combine (union) these datasets?
Dataset A:
col1 | col2 |
---|---|
1 | a |
2 | b |
Dataset B:
col1 | col2 |
---|---|
2 | c |
3 | d |
Dataset C:
col1 | col2 |
---|---|
1 | e |
1 | f |
Desired output:
col1 | col2 |
---|---|
1 | a |
2 | b |
2 | c |
3 | d |
1 | e |
1 | f |