CONCAT_OPERATOR_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 CONCAT_OPERATOR_ORACLE('a', 'b', NULL, 'c');
+---------------------------------------------+
| CONCAT_OPERATOR_ORACLE('a', 'b', NULL, 'c') |
+---------------------------------------------+
| abc |
+---------------------------------------------+
SET sql_mode=CONCAT(@@sql_mode, ',ORACLE');
SELECT CONCAT('H', 'el', NULL, 'lo th', 'ere!');
+------------------------------------------+
| CONCAT('H', 'el', NULL, 'lo th', 'ere!') |
+------------------------------------------+
| Hello there! |
+------------------------------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.