snowflake.snowpark.functions.equal_null¶
- snowflake.snowpark.functions.equal_null(e1: Union[Column, str], e2: Union[Column, str]) Column[source]¶
Compares whether two expressions are equal. The function is NULL-safe, meaning it treats NULLs as known values for comparing equality. Note that this is different from the EQUAL comparison operator (=), which treats NULLs as unknown values.
Example: