Split Column

Split a column by delimiter into multiple

What It Does

Split Column breaks a text column into multiple columns using a delimiter. For example, split "John Smith" by space into first_name and last_name.

How to Use It

Opening the Panel

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

Configuration

FieldTypeRequiredDescription
ColumnColumn selectYesThe column to split
DelimiterTextYesCharacter(s) to split on
Number of partsNumberYesHow many columns to create
SQL generated under the hood
SELECT *, split_part(full_name, ' ', 1) AS first_name, split_part(full_name, ' ', 2) AS last_name FROM data
Try this operation →

Related Operations