The SelectColumns action allows you to filter or reorder the columns of your dataset. You can either remove specific columns or keep and reorder them as needed. This is useful for cleaning up data, reducing memory usage, or preparing data for export or analysis.

Parameters:
Columns selection
The list of columns to be either kept or removed, depending on the operation mode.
Operation
Specifies what to do with the selected columns:
remove: the selected columns are deleted from the output.keep (and reorder): only the selected columns are kept, and their order in the list defines their new position."keep (and reorder)" mode.Note:
Use this action at the beginning of your ETL flow to clean or prioritize specific columns, or at the end to prepare data for export in the correct format or order.
Given an input table with 3 columns and 1 row:
| 2 | 3 | 1 |
|---|---|---|
| B | C | A |
remove and columns selected are 2, 3| 1 |
|---|
| A |

keep (and reorder) and columns selected are 2, 3| 2 | 3 |
|---|---|
| B | C |

