Mysql
 sql >> Database >  >> RDS >> Mysql

Come gestire più autori restituiti dalla query libri-tabella

Potresti prendere in considerazione l'utilizzo di GROUP_CONCAT() così:

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

Questo ti darebbe un output come:

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