Functions.Least Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Least(Column[]) |
Returns the least value of the list of values, skipping null values. |
Least(String, String[]) |
Returns the least value of the list of values, skipping null values. |
Least(Column[])
Returns the least value of the list of values, skipping null values.
public static Microsoft.Spark.Sql.Column Least (params Microsoft.Spark.Sql.Column[] columns);
static member Least : Microsoft.Spark.Sql.Column[] -> Microsoft.Spark.Sql.Column
Public Shared Function Least (ParamArray columns As Column()) As Column
Parameters
- columns
- Column[]
Columns to apply
Returns
Column object
Applies to
Least(String, String[])
Returns the least value of the list of values, skipping null values.
public static Microsoft.Spark.Sql.Column Least (string columnName, params string[] columnNames);
static member Least : string * string[] -> Microsoft.Spark.Sql.Column
Public Shared Function Least (columnName As String, ParamArray columnNames As String()) As Column
Parameters
- columnName
- String
Column name
- columnNames
- String[]
Additional column names
Returns
Column object