Concatenate

This node concatenates two or more tables. The table at inport 0 is the first input table (top input port), and the tables at subsequent inports are the additional input tables. Columns with the same names are concatenated (if the column types differ, the resulting column type will be the common base type of the input column types). If one input table contains column names that the other tables do not, the columns can either be filled with missing values or filtered out, meaning they will not appear in the output table. The dialog allows setting the following parameters:

Options

How to combine input columns
  • Union: Use all columns from all input tables. Fill rows with missing values if they miss cells for some columns.
  • Intersection: Use only the columns that appear in all input tables. Any other column is ignored and won't appear in the output table. Columns are matched by name.
RowID handling
Choose how to handle RowIDs:
  • Create new: Discard the RowIDs of the input tables and generate new RowIDs
  • Reuse existing: Reuse the RowIDs of the input tables. This might lead to conflicts due to duplicate RowIDs, see Duplicate RowID strategy for different ways to resolve them.
Duplicate RowID strategy
Select how duplicate RowIDs are handled:
  • Append suffix: The output table will include all rows, but duplicate RowIDs will have a suffix added. This method is also memory intensive, similar to the "Skip" option.
  • Skip: Duplicate RowIDs in the additional tables are not added to the output table. This option is memory intensive because it caches the RowIDs to find duplicates and requires full data duplication.
  • Fail: The node will fail during execution if duplicate RowIDs are encountered. This option is efficient for checking uniqueness.
Enable hiliting
Advanced setting that enables hiliting between the inputs and the concatenated output table.

Input Ports

Icon
Table contributing the rows of the first part of the output table.
Icon
Table contributing the rows of the second part of the output table.
Icon
Tables contributing subsequent rows.

Output Ports

Icon
Table with rows from all tables.

Views

This node has no views

Workflows

Links

Developers

You want to see the source code for this node? Click the following button and we’ll use our super-powers to find it for you.