> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ST_Degrees

Convert an angle in radian to degrees.

<img src="https://mintcdn.com/wherobots/fqh3gPDE0J25Lra_/images/sql-functions/ST_Degrees/ST_Degrees.svg?fit=max&auto=format&n=fqh3gPDE0J25Lra_&q=85&s=b8f18876da6a805e30b03365491ad1aa" alt="ST_Degrees" width="500" height="300" data-path="images/sql-functions/ST_Degrees/ST_Degrees.svg" />

## Signatures

```sql theme={"system"}
ST_Degrees(angleInRadian)
```

## Parameters

<ParamField body="angleInRadian" type="Double" required>
  The angle in radians to convert to degrees.
</ParamField>

## Return type

<ResponseField type="Double">
  A numeric value.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_Degrees(0.19739555984988044)
```

```
11.309932474020195
```
