--- { "title": "ltrim", "language": "en" } --- ## ltrim ### Description #### Syntax `VARCHAR ltrim (VARCHAR str)` Remove the space that appears continuously from the beginning of the parameter str ### example ``` mysql> SELECT ltrim(' ab d'); +------------------+ | ltrim(' ab d') | +------------------+ | ab d | +------------------+ ``` ### keywords LTRIM