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

Come raggruppare in base a questi dati delimitati da virgole

Se assumiamo che tu abbia una struttura normalizzata, devi semplicemente:

SELECT a.author, count(*) 
FROM books b
INNER JOIN author a ON a.author_id=b.author_id
GROUP BY a.author