RADIANS
Learn how to use the RADIANS numeric function in PlaidCloud Lakehouse. Returns the argument x, converted from degrees to radians. Includes syntax and examples.
Returns the argument x, converted from degrees to radians.
Analyze Syntax
func.radians( <x> )
Analyze Examples
func.radians(90)
┌────────────────────┐
│ func.radians(90) │
├────────────────────┤
│ 1.5707963267948966 │
└────────────────────┘
SQL Syntax
RADIANS( <x> )
SQL Examples
SELECT RADIANS(90);
┌────────────────────┐
│ radians(90) │
├────────────────────┤
│ 1.5707963267948966 │
└────────────────────┘