如何在一行中连接同一个表中不同行的数据?

时间:2016-09-29 13:16:19

标签: php mysql group-by concatenation

我有一个数据库名称class_routine,其中跟随和列如列所示我想从行星期日获取所有数据并将其分组在同一列中,我该怎么办? 这是数据库和列名称和行名称 enter image description here

1 个答案:

答案 0 :(得分:1)

您可以使用group_concat和group by

 select day, group_concat(routine)
 from my_table 
 group by day;