TRIM_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(TRIM_ORACLE(' abc ')), TRIM_ORACLE(' ');
+------------------------------+-------------------+
| QUOTE(TRIM_ORACLE(' abc ')) | TRIM_ORACLE(' ') |
+------------------------------+-------------------+
| 'abc' | NULL |
+------------------------------+-------------------+
SET sql_mode=CONCAT(@@sql_mode, ',ORACLE');
SELECT TRIM(' ');
+------------+
| TRIM(' ') |
+------------+
| NULL |
+------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.