SQRT
Description
Returns the square root of the specified float value. (SQRT in Transact-SQL).
Sample Source Pattern
Syntax
SQRT ( float_expression ) SQRT(expr)Examples
Code:
SELECT SQRT(25) AS RESULT;Result:
RESULT|
------+
5.0|Code:
SELECT SQRT(25) AS RESULT;Result:
RESULT|
------+
5.0|Last updated
Was this helpful?