Sqrt

The Sqrt() function calculates the square root of a number.

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

Returns a number that is the square root of a givennumber. Returns Invalid expression if the parameter is not a valid number.

Syntax

Sqrt(number)

Sqrt(100) => 10

Sqrt() => Invalid expression

Parameters

NameTypeRequiredDescription

number

numeric

a number.

Examples

Function callResult

Sqrt(100)

10

Sqrt(9)

3

Sqrt(2)

1.4142135623731

Last updated