LTRIM

Learn how to use the LTRIM string function in PlaidCloud Lakehouse. Removes leading whitespace or specified characters from a string - with syntax and examples.

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  
└───────┘