Add some string functions document (#928)

This commit is contained in:
ZHAO Chun
2019-04-16 10:14:49 +08:00
committed by GitHub
parent e5a5b6da16
commit cdd613c5a4
12 changed files with 237 additions and 16 deletions

View File

@ -0,0 +1,20 @@
# ltrim
## Syntax
`VARCHAR ltrim(VARCHAR str)`
## Description
将参数 str 中从开始部分连续出现的空格去掉
## Examples
```
mysql> SELECT ltrim(' ab d');
+------------------+
| ltrim(' ab d') |
+------------------+
| ab d |
+------------------+
```