SQRT (Lakehouse v1)
Returns the square root of a nonnegative number x. Returns Nan for negative input.
Analyze Syntax
Section titled “Analyze Syntax”func.sqrt( <x> )Analyze Examples
Section titled “Analyze Examples”func.sqrt(4)
┌──────────────┐│ func.sqrt(4) │├──────────────┤│ 2 │└──────────────┘SQL Syntax
Section titled “SQL Syntax”SQRT( <x> )SQL Examples
Section titled “SQL Examples”SELECT SQRT(4);
┌─────────┐│ sqrt(4) │├─────────┤│ 2 │└─────────┘