Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

LTrim

Example

Trim leading spaces from a string.

SELECT LTrim(”    SQL Tutorial”AS LeftTrimmedString;

Definition and Usage

The LTrim() function eliminates spaces at the beginning of a string.

Note: Also consider the RTrim() function for removing trailing spaces from a string.

Syntax

LTrim(string)

Parameter Values

Parameter

Description

string

Required. Specifies the string from which leading spaces will be removed.

Technical Details

Works in:

 From Access 2000