Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 365 Bytes

File metadata and controls

20 lines (14 loc) · 365 Bytes
description
Convert a value in degrees to radians.

RADIANS

Syntax

RADIANS(x number) → float

  • x: The number in degrees

Examples

{% code title="RADIANS example" %}

SELECT RADIANS(45)
-- 0.7853981633974483

{% endcode %}