私は3つのテーブルを持っています:
追跡:
id, title, artist_id, album_id, description, cover
アーティスト:
id, name, bio
アルバム:
id, title, description, artist_id, cover
私は実際にこの要求を持っています:
SELECT * FROM `track`
LEFT JOIN album ON track.album_id=album.id
LEFT JOIN artist ON album.artist_id=artist.id
しかし、トラックがアルバムを持っていない場合にアーティスト情報を取得するために、track.album_id = 0
その条件を結合するにはどうすればよいですか?LEFT JOIN artist ON track.artist_id=artist.id