snowflake.snowpark.functions.array_contains¶
- snowflake.snowpark.functions.array_contains(variant: Union[Column, str], array: Union[Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.30.0/snowpark-python/src/snowflake/snowpark/functions.py#L7076-L7100)¶
- Returns True if the specified VARIANT is found in the specified ARRAY. - Parameters:
- variant – Column containing the VARIANT to find. 
- array – Column containing the ARRAY to search. 
 
 - Example::
- >>> from snowflake.snowpark import Row >>> df = session.create_dataframe([Row([1, 2]), Row([1, 3])], schema=["a"]) >>> df.select(array_contains(lit(2), "a").alias("result")).show() ------------ |"RESULT" | ------------ |True | |False | ------------