TO_DEGREES

Converts a number in radians
to degrees.The input can be a single- or multi-valued field or an expression. The input
type must be of a numeric type and result is always double.Example:
```esql
ROW rad = [1.57, 3.14, 4.71]
| EVAL deg = TO_DEGREES(rad)
```
