SQRT (TSQL Function)

Returns the square root of the argument.

Syntax

SQRT ( float_expression )

Arguments

float_expression
is an expression of type float.

Return Types

Returns float.

Examples

PRINT SQRT(1), SQRT(1234.5);

The result is:

                      1|       35.1354521815217|
RSQL, a simple alternative to Microsoft SQL Server