GROUP_CONCAT用PHP添加超链接个人(Group_Concat with php to a

2019-10-29 03:31发布

我已经得到了使用GROUP_CONCAT表中检索,使我没有repititions查询。

'SELECT book_name, chapter_slug, GROUP_CONCAT(chapter_name SEPARATOR "<br/>") as ChapterNames 
FROM ci_books, ci_chapters 
WHERE ci_books.book_id = ci_chapters.book_id AND slug = ' . $conn->quote($slug). '
GROUP BY book_name;'

现在的结果是
分离这是很好的,因为我想超链接添加到每个但我只得到一排,这意味着该超链接是所有chapterNames值相同。

book_name       chapter_slug   ChapterNames     
Twelvers Dawn   wonders        Wonders<br/>Rising

所以,现在当通过PHP超链接的所有ChapterNames都是一样的。 我能理解为什么,但我怎样才能让每个人都有自己的超级链接。

理想情况下,我想这个结果或类似:

book_name      chapter_slug  ChapterNames   
Twelvers Dawn  wonders       Wonders
               rising        Rising
               movers        Movers
文章来源: Group_Concat with php to add individual hyperlinks