Union All

Append rows from another loaded table

What It Does

Union All stacks two tables vertically. All rows from the current table are kept, then rows from the second table are appended. The two tables should have compatible columns (same names and types in the same order). Useful for combining month-by-month files into a single dataset.

How to Use It

Opening the Panel

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

Configuration

FieldTypeRequiredDescription
Other tableTable pickerYesPick another table already loaded in your workspace
Track source columnToggleNoAdds _source column recording origin table name
SQL generated under the hood
SELECT *, 'jan' AS _source FROM jan_data UNION ALL SELECT *, 'feb' AS _source FROM feb_data
Try this operation →

Related Operations

  • Join - Join with another file/table
  • Unnest - Explode delimited column into rows
  • Fill Missing - Fill null values