Functions.Bround 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
Bround(Column) |
Returns the value of the |
Bround(Column, Int32) |
Returns the value of the |
Bround(Column)
Returns the value of the column
rounded to 0 decimal places with
HALF_EVEN round mode.
public static Microsoft.Spark.Sql.Column Bround(Microsoft.Spark.Sql.Column column);
static member Bround : Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Bround (column As Column) As Column
Parameters
- column
- Column
Column to apply
Returns
Column object
Applies to
Bround(Column, Int32)
Returns the value of the column
rounded to scale
decimal places with
HALF_EVEN round mode.
public static Microsoft.Spark.Sql.Column Bround(Microsoft.Spark.Sql.Column column, int scale);
static member Bround : Microsoft.Spark.Sql.Column * int -> Microsoft.Spark.Sql.Column
Public Shared Function Bround (column As Column, scale As Integer) As Column
Parameters
- column
- Column
Column to apply
- scale
- Int32
Scale factor
Returns
Column object