我已经加入了这样的帖子和标签表:
$this->db->select('*');
$this->db->from('posts');
$this->db->join('posts_tags', 'posts.post_id = posts_tags.post_id', 'left');
$this->db->join('tags', 'posts_tags.tag_id = tags.tag_id', 'left');
我如何循环浏览每个帖子,并显示它们各自标签的列表。例如:
post1: tag1, tag2
post2, tag1, tag3
目前,我可以显示标签,但它为帖子 1 和 2 返回两行。现在的输出是:
post1: tag1
post1: tag2
post2: tag1
post2: tag3
我如何为帖子返回一行,其中包含所有相关标签?