Ltrim: removes a set of characters from the left of a string
SQL>
SQL> -- Ltrim: removes a set of characters from the left of a string.
SQL>
SQL>
SQL> -- LTRIM stands for "left trim."
SQL> -- The general format for this function is:
SQL>
SQL> -- LTRIM(string, characters_to_remove)
SQL>
SQL> SELECT LTRIM('...Mitho', '.') FROM dual;
LTRIM
-----
Mitho
SQL>
Related examples in the same category