This section contains reference documentation for the ltrim function.
Last updated 1 year ago
trim spaces from left side of the string
LTRIM(col)
SELECT ' Pinot with spaces ' AS notTrimmed, ltrim(' Pinot with spaces ') AS trimmed FROM ignoreMe
" Pinot with spaces "
"Pinot with spaces "