For the complete documentation index, see llms.txt. This page is also available as Markdown.

RADIANS

This page describes the RADIANS function in Lenses SQL.

RADIANS(numExpr)

Converts the input expression to radians.

Available in:

Processors
SQL Studio

Sample code:

USE `kafka`;
SELECT 
    RADIANS(integer), 
    integer 
FROM numbers-data
LIMIT 1;

Output:

{
  "value": {
    "RADIANS": "1228.659433526448",
    "integer": 70397
  }
}

Last updated

Was this helpful?