DEGREES
Returns the argument x
, converted from radians to degrees, where x
is given in radians.
Analyze Syntax
func.degrees( <x> )
Analyze Examples
func.degrees(func.pi())
┌─────────────────────────┐
│ func.degrees(func.pi()) │
├─────────────────────────┤
│ 180 │
└─────────────────────────┘
SQL Syntax
DEGREES( <x> )
SQL Examples
SELECT DEGREES(PI());
┌───────────────┐
│ degrees(pi()) │
├───────────────┤
│ 180 │
└───────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)