blob: a215989eaebc018222c1f64d8ef71b7b30bcff94 [file] [log] [blame] [view]
---
{
"title": "LOWER",
"language": "en"
}
---
## lower
### Description
#### Syntax
`VARCHAR lower (VARCHAR str)`
Convert all strings in parameters to lowercase. Another alias for this function is [lcase](lcase.md).
### example
```
mysql> SELECT lower("AbC123");
+-----------------+
| lower('AbC123') |
+-----------------+
| abc123 |
+-----------------+
```
### keywords
LOWER