Chcete-li se vrátit k původnímu výstupu s více tabulkami, můžete použít následující syntaxi s JOINY
SELECT s.uniq, s.date, a.artist, t.title, s.position
FROM songs AS s
JOIN artists AS a ON a.artistcode = s.artistcode
JOIN titles AS t ON t.titlecode = s.titlecode
Pokud se snažíte odstranit duplicitní položky skladeb, můžete do dotazu přidat toto:
GROUP BY t.title