snowflake.snowpark.functions.as_array¶ snowflake.snowpark.functions.as_array(variant: Union[Column, str]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/functions.py#L8079-L8097)¶ Casts a VARIANT value to an array. Example::CopyExpand>>> df = session.sql("select array_construct(1, 2)::variant as a") >>> df.select(as_array("a").alias("result")).show() ------------ |"RESULT" | ------------ |[ | | 1, | | 2 | |] | ------------ Show lessSee moreScroll to top