Edit

ltrim

Description

Removes the leading spaces from the beginning of the str argument.

Syntax

VARCHAR ltrim(VARCHAR str)

Examples

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

keyword

LTRIM