Inner joiner
Last updated
Last updated
[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
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.
joined: {string: any}[]
Sends the resulting table.