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