如何在php中打印一对多的关系结果?

时间:2016-05-12 14:55:15

标签: php

我在下面的表格中查询了我的查询结果。

id     name   celebrity
------------------------
1      A       X
1      A       Y
1      A       Z
2      B       M
2      B       N

我想使用php打印此表结果如下。

1->A->X,Y,z

2->B->M,N

在使用mysql数据库查询后,我将上面的表作为关联数组。任何人都可以帮我写一个逻辑来打印上面的表结果。提前致谢。

1 个答案:

答案 0 :(得分:0)

你可以通过mysql

制作它
select id, name, group_concat(celebrity)  
   from te table
 group by id, name