In this post explains how to use the LTRIM function in SQL Server (Transact-SQL) with syntax and examples.
In SQL Server (Transact-SQL), the LTRIM function removes all space characters from the left-hand side of a string.
The syntax for the LTRIM function in SQL Server (Transact-SQL) is:
LTRIM( string )
The string to trim the space characters from the left-hand side.
The LTRIM function can be used in the following versions of SQL Server (Transact-SQL):
Let's look at some SQL Server LTRIM function examples and explore how to use the LTRIM function in SQL Server (Transact-SQL).
For example:
SELECT LTRIM(' AODBA.com');
Output: 'AODBA.com'
SELECT LTRIM(' AODBA.com ');
Output: 'AODBA.com '
SELECT LTRIM(' ao dba');
Output: 'ao dba'