Ltrim
String Function
Description
Removes leading characters, including whitespace, from a string.
Click here to navigate to the PostgreSQL docs page for this syntax.
The function Ltrim() is supported on Snowflake.
Grammar Syntax
LTRIM(<expr> , <characters>)
Sample Source Patterns
PostgreSQL
SELECT LTRIM('#000000123', '0#');
Snowflake
SELECT LTRIM('#000000123', '0#');
Last updated
Was this helpful?