ltrim

Description

Syntax

‘VARCHAR ltrim (VARCHAR str)’

Remove the space that appears continuously from the beginning of the parameter str

example

  1. mysql> SELECT ltrim(' ab d');
  2. +------------------+
  3. | ltrim(' ab d') |
  4. +------------------+
  5. | ab d |
  6. +------------------+

keyword

LTRIM