Rename Columns
Rename one or more columns; other columns are kept as-is
What It Does
Rename Columns lets you change the names of selected columns. Unselected columns keep their original names and order. Useful for cleaning up imported headers (snake-casing, removing spaces) or aligning column names with a downstream system's schema.
How to Use It
Opening the Panel
Click the + button in the toolbar or press the operation picker, then search for "Rename Columns". It's in the Columns group.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
Renames | List of (old, new) pairs | Yes | For each column to rename, pick the source column and type the new name |
SQL generated under the hood
SELECT customer_id AS customer, total_amount AS revenue, ...rest unchanged... FROM data
Related Operations
- Select Columns - Pick and reorder columns
- Delete Columns - Remove columns from the table
- Copy Columns - Duplicate columns with custom names