DEGREES (Lakehouse v1)
Returns the argument x, converted from radians to degrees, where x is given in radians.
Analyze Syntax
Section titled “Analyze Syntax”func.degrees( <x> )Analyze Examples
Section titled “Analyze Examples”func.degrees(func.pi())
┌─────────────────────────┐│ func.degrees(func.pi()) │├─────────────────────────┤│ 180 │└─────────────────────────┘SQL Syntax
Section titled “SQL Syntax”DEGREES( <x> )SQL Examples
Section titled “SQL Examples”SELECT DEGREES(PI());
┌───────────────┐│ degrees(pi()) │├───────────────┤│ 180 │└───────────────┘