SQRT

Returns the square root of a number.

Analyze Syntax

func.sqrt(<x>)

Analyze Examples

func.sqrt(144)

┌──────┐
 12.0  
└──────┘

SQL Syntax

SQRT(<x>)

SQL Examples

SELECT SQRT(144);

┌──────┐
 12.0  
└──────┘