RADIANS

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 
└────────────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)