Files
doris/docs/documentation/cn/sql-reference/sql-functions/string-functions/ltrim.md
xy720 4c2a3d6da4 Merge Help document to documentation (#1586)
Help document collation (integration of help and documentation documents)
2019-08-07 21:31:53 +08:00

300 B

ltrim

description

Syntax

VARCHAR ltrim(VARCHAR str)

将参数 str 中从开始部分连续出现的空格去掉

example

mysql> SELECT ltrim('   ab d');
+------------------+
| ltrim('   ab d') |
+------------------+
| ab d             |
+------------------+

##keyword LTRIM