MAKE_SET()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
A description for this Function has not yet been added to this Documentation.
EXAMPLES
SELECT MAKE_SET(1,'a','b','c');
+-------------------------+
| MAKE_SET(1,'a','b','c') |
+-------------------------+
| a |
+-------------------------+
SELECT MAKE_SET(1|2,'r','d','b','m','s');
+-----------------------------------+
| MAKE_SET(1|2,'r','d','b','m','s') |
+-----------------------------------+
| r,d |
+-----------------------------------+
SELECT MAKE_SET(1|2,'r',NULL,'b','m','s');
+------------------------------------+
| MAKE_SET(1|2,'r',NULL,'b','m','s') |
+------------------------------------+
| r |
+------------------------------------+
SELECT MAKE_SET(3|4,'a','b','c');
+---------------------------+
| MAKE_SET(3|4,'a','b','c') |
+---------------------------+
| a,b,c |
+---------------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.