ltrim
Description
Syntax:
VARCHAR ltrim (VARCHAR str)
This function removes the continuous whitespace that appears from the left of the string.
Example
mysql> SELECT ltrim(' ab d');
+------------------+
| ltrim(' ab d') |
+------------------+
| ab d |
+------------------+
Keywords
LTRIM