Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This function performs an inner join based on similar column names in the two tables. If the two tables don't have similar column names, a cross join is done.

Operator Usage in Easy Mode

  1. Click + on the parent node.
  2. Enter the Auto Join operator in the search field and select the operator from the Results to open the operator form.
  3. Enter or select a table to join on the left of the table.
  4. Enter or select a table to join on the right of the table.
  5. Click Run to view the result.
  6. Click Save to add the operator to the playbook.
  7. Click Cancel to discard the operator form.

Usage Details

LQL Command

Code Block
autoJoin(leftTable, rightTable)

...

Output
Inner join of two tables by similar column names

Example

Input
leftTable:

a
1
2
3
4
5

rightTable:

...