Skip to main content
atoti.MultiRowArrayConversion(
    *,
    index_column: str,
    array_columns: Set[str],
)
Convert an external table where array values are stored with one value per row to a table with array columns. The external table must have an index_column and at least one “value” column representing the array elements. All the table columns except from index_column and the array_columns will become key columns.
external_table has an INDEX column:
and its content is: It can be converted into a table with an array column:

Attributes

index_column

Name of the column used as an index for the arrays.

array_columns

Names of the columns that contain array values.