REPLACE_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 REPLACE_ORACLE('mcricdb', 'c', 'a');
+-------------------------------------+
| REPLACE_ORACLE('mcricdb', 'c', 'a') |
+-------------------------------------+
| mariadb |
+-------------------------------------+
SET sql_mode=CONCAT(@@sql_mode, ',ORACLE');
SELECT REPLACE('mcricdb', 'c', 'a');
+------------------------------+
| REPLACE('mcricdb', 'c', 'a') |
+------------------------------+
| mariadb |
+------------------------------+