Last updated 1 year ago
Returns the square root of the specified float value. ().
SQRT ( float_expression )
SQRT(expr)
Code:
SELECT SQRT(25) AS RESULT;
Result:
RESULT| ------+ 5.0|