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