# RADIANS

The `RADIANS()` function converts `x` from degrees to radians.

## Syntax

```sql
RADIANS (x)

```

## Arguments

* `x`: the argument in degrees

## Return Type

Float or double.

## Examples

```sql
SELECT RADIANS(180);

```

```output

+-------------------+
| RADIANS(180)      |
+-------------------+
| 3.141592653589793 |
+-------------------+

```

***

Modified at: July 14, 2026

Source: [/db/v9.1/reference/sql-reference/numeric-functions/radians/](https://docs.singlestore.com/db/v9.1/reference/sql-reference/numeric-functions/radians/)

(An index of the documentation is available at /llms.txt)
