如何显示用逗号分隔的MySQL列中的数据?

您可以使用MySQL的GROUP_CONCAT()函数将结果显示为逗号分隔的列表。让我们首先创建一个表-

create table DemoTable
   (
   Value int
   );

使用插入命令在表中插入一些记录-

insert into DemoTable values(10);

insert into DemoTable values(20);

insert into DemoTable values(30);

insert into DemoTable values(40);

insert into DemoTable values(50);

使用select语句显示表中的所有记录-

select *from DemoTable;

这将产生以下输出-

+-------+
| Value |
+-------+
| 10    |
| 20    |
| 30    |
| 40    |
| 50    |
+-------+
5 rows in set (0.00 sec)

以下是显示以逗号分隔的列中的数据的查询。

SELECT GROUP_CONCAT(Value) FROM DemoTable;

这将产生以下输出-

+---------------------+
| GROUP_CONCAT(Value) |
+---------------------+
| 10,20,30,40,50      |
+---------------------+
1 row in set (0.00 sec)