snowflake.snowpark.functions.least_ignore_nulls¶
- snowflake.snowpark.functions.least_ignore_nulls(*columns: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
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: