bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

MS Access LTrim() Function

Example

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

ParameterDescription
stringRequired. The string to remove leading spaces from

Technical Details

Works in:From Access 2000

Previous

MS Access Len() Function

Next

MS Access Mid() Function