I have a database with three tables, one with titles, one with authors and a join table that combines the two. Most of the titles have one author, but some have more than one. I am able to return the rows I want, but the titles with more than one author return a row for each title, one having one author and one with the other author as you might expect. Is there I way I can combine the authors into one row?
Here is my statement
SELECT DISTINCT t.id, t.title, t.notes,
a.lastname, a.firstname, a.middlename
FROM titles t, author a, authortitle at
WHERE t.title LIKE '".$letter."%'
AND at.author_id_fk = a.id
AND at.title_id_fk = t.id
$letter is the first letter of the title.
Try this;