# length

calculate length of the string

## Signature

> LENGTH(col)

## Usage Examples

```sql
SELECT length('Pinot') AS value
FROM ignoreMe
```

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