Lucid.CSV.JoinTables¶
This task type joins two CSV tables into a combined table.
How to join?¶
left
: Keep the rows of the left table, even if there are no matching rows in the right table. Discard the rows of the right table where there are no matching rows in the left table.right
: Keep the rows of the right table, even if there are no matching rows in the left table. Discard the rows of the left table where there are no matching rows in the right table.outer
: Keep all rows from both tables, even if there are no matching rows in the other table.inner
: Keep only the rows where there are matching rows in the other table. Discard the rows where there are no matching rows in the other table.