# LOWER

LOWER( `text`)&#x20;

Returns the `text` in lowercase.

### Arguments

| Argument | Description             |
| -------- | ----------------------- |
| `text`   | Text to turn lowercase. |

### Output

Outputs lowercase `text`.

### Example

```
LOWER( "San Francisco")
>> "san francisco"
```
