snowflake.snowpark.functions.map_contains_key¶
- snowflake.snowpark.functions.map_contains_key(value: Union[Column, None, bool, int, float, str, bytearray, Decimal, date, datetime, time, bytes, NaTType, float64, list, tuple, dict], col: Union[Column, str])[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/functions.py#L7557-L7586)¶
Determines whether the specified MAP contains the specified key.
- Parameters:
value – The key to find.
col – The map to be searched.
- Example 1::
- Example 2::