Add Column

Add a new computed or empty column

What It Does

Add Column creates a new column using a SQL expression. Write formulas like "price * quantity" or use functions like "UPPER(name)".

How to Use It

Opening the Panel

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

Configuration

FieldTypeRequiredDescription
Column nameTextYesName for the new column
ExpressionSQL expressionYesSQL expression to compute the value
SQL generated under the hood
SELECT *, price * quantity AS total FROM data
Try this operation →

Related Operations