sqrt
sqrt(arg: numeric) -> float64
Returns the square root for a given input and null if input is negative.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
make_col squareroot:sqrt(@.x)
Create a column 'squareroot' with the result of the square root of column 'x'
Updated 8 days ago