Returns a character expression (varchar
or nvarchar
) after removing all leading white spaces, i.e., white spaces from the left through to the first non-white space character.
Parameters:
varcher
, except text
, ntext
and image
.SELECT LTRIM(' This is my string') -- Returns 'This is my string'