Files
doris/docs/en/sql-reference/sql-functions/string-functions/ltrim.md

1.1 KiB

title, language
title language
ltrim en

ltrim

Description

Syntax

'VARCHAR ltrim (VARCHAR str)'

Remove the space that appears continuously from the beginning of the parameter str

example

mysql> SELECT ltrim('   ab d');
+------------------+
| ltrim('   ab d') |
+------------------+
| ab d             |
+------------------+

##keyword LTRIM