Skip to main content
Converts degrees to radians.

Syntax

RADIANS(<value>) 

Parameters

ParameterDescriptionSupported input types
<value>The value to be converted to radiansDOUBLE PRECISION

Return Type

DOUBLE PRECISION

Example

The following example converts the value 180 in degrees to radians:
SELECT radians(180.0) as result;
result double
3.141592653589793

Rows: 1Execution time: 5.29ms