Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 328 Bytes

File metadata and controls

26 lines (18 loc) · 328 Bytes

ltrim

description

Syntax

VARCHAR ltrim(VARCHAR str)

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

example

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

keyword

LTRIM