SQRT

Returns the square root of a nonnegative number x. Returns Nan for negative input.

Analyze Syntax

func.sqrt( <x> )

Analyze Examples

func.sqrt(4)

┌──────────────┐
 func.sqrt(4) 
├──────────────┤
            2 
└──────────────┘

SQL Syntax

SQRT( <x> )

SQL Examples

SELECT SQRT(4);

┌─────────┐
 sqrt(4) 
├─────────┤
       2 
└─────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)