ASA SQL Reference
SQL Functions
Alphabetical list of functions
Trims leading blanks from a string.
LTRIM ( string-expression )
string-expression The string to be trimmed.
SQL/92 Vendor extension.
SQL/99 Vendor extension.
Sybase Compatible with Adaptive Server Enterprise.
The following statement returns the value Test Message with all leading blanks removed.
SELECT LTRIM( ' Test Message' )