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