# TO_DEGREES

Converts a numeric value from radians to degrees.

## Syntax

`TO_DEGREES(number)`

### Parameters

#### number

Input value to be converted from radians to degrees. The input can be a single- or multi-valued column or an expression.

## Examples

Converts an array of radian values to their corresponding degree values and stores the result in a new column.
```esql
ROW rad = [1.57, 3.14, 4.71]
| EVAL deg = TO_DEGREES(rad)
```