LTRIM
(LTRIM(
text
))
Trims leading blanks from
text
, returning a text string.
In the following example, the value of
vltrim
is the text string
ABCDE
without the leading blanks.
SET VAR vltrim = (LTRIM(' ABCDE'))