Supported in: Batch
Cross joins left and right dataset inputs together, matching all rows from each side against all rows from the other. The output is the cartesian product of the two datasets.
Transform categories: Join
Argument values:
Inputs: ri.foundry.main.dataset.left
tail_number | airline | miles | factor |
---|---|---|---|
XB-123 | foundry air | 124 | 2 |
MT-222 | new airline | 1123 | 5 |
PA-452 | new air | 212 | 2 |
ri.foundry.main.dataset.right
tail_number | home_airport |
---|---|
XB-123 | LHR |
MT-222 | CPH |
KK-452 | JFK |
JR-201 | IAD |
Output:
tail_number | airline | home_airport |
---|---|---|
XB-123 | foundry air | LHR |
XB-123 | foundry air | CPH |
XB-123 | foundry air | JFK |
XB-123 | foundry air | IAD |
MT-222 | new airline | LHR |
MT-222 | new airline | CPH |
MT-222 | new airline | JFK |
MT-222 | new airline | IAD |
PA-452 | new air | LHR |
PA-452 | new air | CPH |
PA-452 | new air | JFK |
PA-452 | new air | IAD |
Argument values:
Inputs: ri.foundry.main.dataset.left
tail_number | airline | miles | factor |
---|---|---|---|
XB-123 | foundry air | 124 | 2 |
MT-222 | new airline | 1123 | 5 |
PA-452 | new air | 212 | 2 |
ri.foundry.main.dataset.right
tail_number | home_airport |
---|---|
XB-123 | LHR |
MT-222 | CPH |
KK-452 | JFK |
JR-201 | IAD |
Output:
tail_number | airline | miles | factor | home_airport |
---|---|---|---|---|
XB-123 | foundry air | 124 | 2 | LHR |
XB-123 | foundry air | 124 | 2 | CPH |
XB-123 | foundry air | 124 | 2 | JFK |
XB-123 | foundry air | 124 | 2 | IAD |
MT-222 | new airline | 1123 | 5 | LHR |
MT-222 | new airline | 1123 | 5 | CPH |
MT-222 | new airline | 1123 | 5 | JFK |
MT-222 | new airline | 1123 | 5 | IAD |
PA-452 | new air | 212 | 2 | LHR |
PA-452 | new air | 212 | 2 | CPH |
PA-452 | new air | 212 | 2 | JFK |
PA-452 | new air | 212 | 2 | IAD |