| Parameter | Type | Description |
|---|---|---|
str | string | the string to remove the leftmost spaces of |
Returns: string
Example
query:
SELECT LTRIM(" Georgia ")
results:
| ltrim |
|---|
| Georgia |
The string function used to trim any leading spaces from the left of a string.
| Parameter | Type | Description |
|---|---|---|
str | string | the string to remove the leftmost spaces of |
query:
SELECT LTRIM(" Georgia ")
results:
| ltrim |
|---|
| Georgia |