LTRIM_ORACLE()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
EXAMPLES
SELECT QUOTE(LTRIM_ORACLE(' abc ')), LTRIM_ORACLE(' ');
+-------------------------------+--------------------+
| QUOTE(LTRIM_ORACLE(' abc ')) | LTRIM_ORACLE(' ') |
+-------------------------------+--------------------+
| 'abc ' | NULL |
+-------------------------------+--------------------+
SET sql_mode=CONCAT(@@sql_mode, ',ORACLE');
SELECT LTRIM(' ');
+-------------+
| LTRIM(' ') |
+-------------+
| NULL |
+-------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.