LTRIM
Removes leading whitespace or specified characters from a string.
Analyze Syntax
func.ltrim(<str>)
Analyze Examples
func.ltrim(' hello')
┌─────────┐
│ 'hello' │
└─────────┘
SQL Syntax
LTRIM(<str>)
SQL Examples
SELECT LTRIM(' hello');
┌───────┐
│ hello │
└───────┘