snowflake.snowpark.functions.size¶
- snowflake.snowpark.functions.size(col: Union[Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.26.0/snowpark-python/src/snowflake/snowpark/functions.py#L6772-L6815)¶
Returns the size of the input ARRAY, OBJECT or MAP. Returns NULL if the input column does not match any of these types.
- Parameters:
col – A
Columnobject or column name that determines the values.
- Example::