GROUP_CONCAT()
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
CREATE TABLE t (a INT, b INT);
INSERT INTO t VALUES
(1,3), (1,5), (8,2), (5,7), (5,6),
(10,1), (6,4), (3,9), (3,9), (7,2),
(7,5), (2,6), (9,10), (9,5), (4,8);
SELECT GROUP_CONCAT(DISTINCT a), GROUP_CONCAT(DISTINCT b) FROM t;
+--------------------------+--------------------------+
| GROUP_CONCAT(DISTINCT a) | GROUP_CONCAT(DISTINCT b) |
+--------------------------+--------------------------+
| 1,2,3,4,5,6,7,8,9,10 | 1,2,3,4,5,6,7,8,9,10 |
+--------------------------+--------------------------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.