Skip to main content

LTRIM (SQL)

A string function that returns a string with the leading blanks removed.

Synopsis

LTRIM(string-expression)

{fn LTRIM(string-expression)}

Description

LTRIM removes the leading blanks from a string expression, and returns the string as type VARCHAR. If string-expression is NULL, LTRIM returns NULL. If string-expression is a string consisting entirely of blank spaces, LTRIM returns the empty string ('').

LTRIM leaves trailing blanks; to remove trailing blanks, use RTRIM. To remove leading and/or trailing characters of any type, use TRIM. To pad a string with leading blanks or other characters, use LPAD. To create a string of blanks, use SPACE.

Note that LTRIM can be used as an ODBC scalar function (with the curly brace syntax) or as an SQL general function.

Arguments

string-expression

A string expression, which can be the name of a column, a string literal, or the result of another scalar function, where the underlying data type can be represented as any character type (such as CHAR or VARCHAR).

Examples

The following example removes the five leading blanks from the string. It leaves the five trailing blanks:

SELECT {fn LTRIM("     Test string with 5 leading and 5 trailing spaces.     ")}

Returns:

Before LTRIM
start:     Test string with 5 leading and 5 trailing spaces.     :end
After LTRIM
start:Test string with 5 leading and 5 trailing spaces.     :end

See Also

RTRIM TRIM LPAD SPACE

FeedbackOpens in a new tab