Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 425 Bytes

File metadata and controls

23 lines (16 loc) · 425 Bytes
description
This section contains reference documentation for the ltrim function.

ltrim

trim spaces from left side of the string

Signature

LTRIM(col)

Usage Examples

SELECT ' Pinot with spaces  ' AS notTrimmed,
       ltrim(' Pinot with spaces ') AS trimmed
FROM ignoreMe
notTrimmed trimmed
" Pinot with spaces " "Pinot with spaces "