# upper

Converts string to upper case.

## Signature

> UPPER(col)

## Usage Examples

```sql
select UPPER('pinot') AS name
FROM ignoreMe
```

| name  |
| ----- |
| PINOT |
