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|Known Issues
No issues were found.
Related EWIs
No related EWIs.
Last updated
