Explode / String Layer

Convert string characters into separate rows. Similar to Polars explode(), pandas explode(), or SQL UNNEST. Creates a new row for each string character, duplicating all other column values.

Example transformation:

Input:

idvalues
1Hi
2Ok

Output:

idvalue
1H
1i
1O
2K
Table
0
0
Table

Select

column

The string column to explode:

Name for the new column. If not provided, the system generates a unique name. If AsColumn matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.