Skip to contents

Removes any occurrences of any of the characters from the left side of the string. characters defaults to space.

Usage

ltrim(string, characters)

Arguments

string, characters

VARCHAR

Value

VARCHAR

Overloads

  • ltrim(string = VARCHAR)

  • ltrim(string = VARCHAR, characters = VARCHAR)

SQL examples

ltrim('    test  ')
ltrim('>>>>test<<', '><')