Edit

ltrim

description

Syntax

VARCHAR ltrim(VARCHAR str)

This function removes the leading spaces from the beginning of the str argument.

example

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

keyword

LTRIM