Skip to main content

ltrim

Removes leading characters from a string.

Syntax

ltrim( <expr> [, <chars> ] )

Arguments

<expr>

The string expression to be trimmed.

<chars> (named) (optional)

One or more characters to remove from the left side of <expr>.

The default value is " \t\n\r" (common whitespace characters).

Returns

This function returns a value of string data type or NULL. If either argument is NULL, returns NULL.

Examples

Remove leading 0 and # characters from a string:

SELECT ltrim('#000000123', '0#');
+---------------------------+
| ltrim('#000000123', '0#') |
|---------------------------|
| 123 |
+---------------------------+
On this page