snowflake.snowpark.functions.greatest_ignore_nulls¶
- snowflake.snowpark.functions.greatest_ignore_nulls(*columns: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.48.0/src/snowflake/snowpark/_functions/scalar_functions.py#L1171-L1190)¶
Returns the largest value from a list of expressions, ignoring None values. If all argument values are None, the result is None.
- Parameters:
columns (ColumnOrName) – The name strings to compare.
- Returns:
The greatest value, ignoring None values.
- Return type:
Examples: