Inner joiner

[data/table/Inner joiner]


Joins tables a and b together by the specified column. Columns from both input tables will be included. On conflict, the table received on b takes precedence. The values of the specified colums should be distinct, the last one will be used otherwise.


Keywords: table, join, inner

Input ports

  • a: {string: any}[]

    Receives the a table operand.

  • b: {string: any}[]

    Receives the b table operand.

  • by: string

    Receives the column name to join by.

Output ports

  • joined: {string: any}[]

    Sends the resulting table.

Last updated