Hi i want to list all the song for the album and i want to list all the artist for individual song see below for example.
1. Song Title 1 - Artist 1, Artist 2,
SELECT s.song_name, a.artist_name, al.album_name FROM artist a LEFT JOIN song_artist sa ON sa.artist_id = a.id LEFT JOIN song s ON s.id = sa.song_id LEFT JOIN album al ON al.id = s.album_id
More info on JOIN