bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access LTrim() Function

Concept visual

MS Access LTrim() Function

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

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:

See also the

RTrim() function.

Syntax

LTrim(

string )

Parameter Values

Parameter

Description string

Required. The string to remove leading spaces from

Technical Details

Works in:

From Access 2000

Previous

❮ MS Access Functions

Next

Previous

MS Access Len() Function

Next

MS Access Mid() Function