Skip to content

Removes leading whitespace or specified characters from a string.

func.ltrim(<str>)
func.ltrim(' hello')
┌─────────┐
'hello'
└─────────┘
LTRIM(<str>)
SELECT LTRIM(' hello');
┌───────┐
│ hello │
└───────┘