我的 sql 表如下所示
表名package
pack_id pack_name
------- ---------
1 pack1
2 pack2
3 pack3
表名items
items_id pack_id items_name pack_name
-------- ------- ---------- ---------
1 1 cat pack1
2 1 dog pack1
3 1 cow pack1
4 2 dog pack2
5 2 cow pack2
6 3 cat pack3
在 html 中,我想显示像这样的包
Pack1 cat dog cow
pack2 dog cow
pack3 cat
这里先
(items_name)cat = 1(items_id) ,
(items_name)dog = 2(items_id) ,
(items_name)cow = 3(items_id) 然后
(items_name)dog = 4(items_id) ,
(items_name)cow = 5(items_id) 还有
(items_name)cat = 6(items_id) 像这样
这里我点击cat 表示对应的cat id 存储在另一个表中。