Add some string functions document (#928)
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
# lower
|
||||
|
||||
## Syntax
|
||||
|
||||
`INT lower(VARCHAR str)`
|
||||
|
||||
## Description
|
||||
|
||||
将参数中所有的字符串都转换成小写
|
||||
|
||||
## Examples
|
||||
|
||||
```
|
||||
mysql> SELECT lower("AbC123");
|
||||
+-----------------+
|
||||
| lower('AbC123') |
|
||||
+-----------------+
|
||||
| abc123 |
|
||||
+-----------------+
|
||||
```
|
||||
Reference in New Issue
Block a user