# SIN

The SIN function returns the sine of a given angle, where the angle is specified in radians.

## Syntax

`SIN(angle)`

### Parameters

#### angle

An angle in radians. If the value is `null`, the function returns `null`.

## Examples

Calculates the sine of the value in column `a` (which is set to 1.8 radians) and stores the result in a new column called `sin`:

```esql
ROW a=1.8
| EVAL sin=SIN(a)
```
