# sqrt

Square root of a value

## Signature

> SQRT(col1)

## Usage Examples

```sql
select sqrt(25) AS value
from ignoreMe
```

| value |
| ----- |
| 5     |
