snowflake.snowpark.functions.least_ignore_nulls¶
- snowflake.snowpark.functions.least_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#L1193-L1212)¶
Returns the smallest value from a list of expressions, ignoring None values. If all argument values are None, the result is None.
- Parameters:
columns (ColumnOrName) – list of column or column names to compare.
- Returns:
The smallest value from the list of expressions, ignoring None values.
- Return type:
Example: