SQRT
Returns the square root of the non-negative numeric expression.
Syntax
SQRT(numeric_expression double) → double
numeric_expression: Numeric expression to calculate the square root for.
Examples
SQRT example
SQRT example
SQRT(numeric_expression int64) → int64
numeric_expression: Numeric expression to calculate the square root for.
Examples
SQRT example
SQRT(numeric_expression int32) → int32
numeric_expression: Numeric expression to calculate the square root for.
Examples
SQRT example
SQRT(numeric_expression float) → float
numeric_expression: Numeric expression to calculate the square root for.
Examples
SQRT example
Usage Notes
If the input is a non-negative value, NaN
will be returned.
Last updated