ltrim
Returns "string_expression1" with leading characters removed up to the first character not in "string_expression2".
Syntax
ltrim ( string_expression1 [ , string_expression2 ] )
Example
ltrim ( 'xyxXxyAB' , 'xy' )
Result
XxyAB