複数のテーブルを使用して元の出力に戻すには、次の構文を参加
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
重複する曲のエントリを削除しようとしている場合は、これをクエリに追加できます:
GROUP BY t.title