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 │
└──────┘
Returns the square root of a number.
func.sqrt(<x>)
func.sqrt(144)
┌──────┐
│ 12.0 │
└──────┘
SQRT(<x>)
SELECT SQRT(144);
┌──────┐
│ 12.0 │
└──────┘