Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment traiter plusieurs auteurs renvoyés par une requête de table de livres

Vous voudrez peut-être envisager d'utiliser GROUP_CONCAT() comme ceci :

SELECT
  b.id,
  b.title,
  GROUP_CONCAT(CONCAT(a.fname,' ' , a.lname)) AS author_names,
  GROUP_CONCAT(a.id) as author_ids
FROM books b
LEFT JOIN author_book ab
  ON b.id = ab.book_id
LEFT JOIN authors a
  ON ab.author_id = a.id
WHERE b.id = '406'
GROUP BY b.id

Cela vous donnerait une sortie comme :

406 | The world of the wheel of time | Robert Jordan,Teresa Patterson     | 2,3