LTRIM()

Scalar. Returns a given string with all leading spaces removed.

Syntax

LTRIM( string )
Data Types

Return

string

String

String

Example

The following example uses the LTRIM function to remove leading spaces:

INSERT INTO OutStream
SELECT LTRIM(Trades.Symbol)
FROM Trades;