# lower

Converts string to lower case.

## Signature

> LOWER(col)

## Usage Examples

```sql
select LOWER('Pinot') AS name
FROM ignoreMe
```

| name  |
| ----- |
| pinot |
