Join

Join with another file/table

What It Does

Join combines data from two files based on matching column values. Like VLOOKUP in Excel but more powerful. Supports inner, left, right, and full outer joins.

How to Use It

Opening the Panel

Click the + button in the toolbar or press the operation picker, then search for "Join". It's in the Data group.

Configuration

FieldTypeRequiredDescription
Join tableFile/table selectYesThe second file to join with
Join typeSelectYesINNER, LEFT, RIGHT, FULL OUTER
Left columnColumn selectYesColumn from current file
Right columnColumn selectYesMatching column from second file
SQL generated under the hood
SELECT a.*, b.department FROM orders a LEFT JOIN employees b ON a.employee_id = b.id
Try this operation →

Related Operations