SQL LTRIM Function

Example

Remove leading spaces from a string:

SELECT LTRIM('     SQL Tutorial') AS LeftTrimmedString;

Definition and Usage

The LTRIM() function removes leading spaces from a string.

Note: Also look at the RTRIM() function.

Syntax

LTRIM(string)

Continue reading SQL LTRIM Function