COLUMN_CREATE()
This page is part of MariaDB's Documentation.
The parent of this page is: Functions for MariaDB Enterprise Server
Topics on this page:
Overview
Returns a dynamic columns blob that stores the given columns with values.
EXAMPLES
SELECT COLUMN_LIST(COLUMN_CREATE('id', 1, 'c1', 'john'));
+---------------------------------------------------+
| COLUMN_LIST(COLUMN_CREATE('id', 1, 'c1', 'john')) |
+---------------------------------------------------+
| `c1`,`id` |
+---------------------------------------------------+
CREATE TABLE t1 (b TINYBLOB);
INSERT INTO t1 VALUES (COLUMN_CREATE('Column1',REPEAT('a',10)));
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.