SQRT

Description

Returns the square root of the specified float value. (SQRT in Transact-SQL).

Sample Source Pattern

Syntax

SQRT ( float_expression )  

Examples

Code:

IN -> SqlServer_01.sql
SELECT SQRT(25) AS RESULT;

Result:

RESULT|
------+
   5.0|

Last updated