Delete Columns

Remove columns from the table

What It Does

Delete Columns removes selected columns from the result. The opposite of Select Columns.

How to Use It

Opening the Panel

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

Configuration

FieldTypeRequiredDescription
ColumnsMulti-selectYesChoose which columns to remove

SQL Generated

SELECT * EXCLUDE (temp_col, notes) FROM data
Try this operation →

Notes

  • Null values are handled gracefully - operations skip or preserve nulls where appropriate.
  • You can edit any pipeline step by clicking on its card to re-open the panel with the same settings.
  • The SQL preview shows exactly what will execute - inspect it before applying.

Related Operations