phpMyAdmin
 sql >> Database >  >> Database Tools >> phpMyAdmin

Come ottenere lo stesso risultato usando Mysql Join invece di sottoquery nidificate?

Puoi modificare la tua query come,

Per tutti i brani nel database tranne quelli nella playlist

$sql1 = "Select distinct title, artist, album 
from songs where id not in(Select distinct song.id
from songs song inner join playlist playlist 
on playlist.song_id=song.id
inner join playlists playlists 
on playlists.playlist_id=playlist.playlist_id
and playlists.name = '$playlist_name')";

Quelli nella tua playlist,

$sql2 = "Select distinct song.title, song.artist, song.album
from songs song inner join playlist playlist 
on playlist.song_id=song.id
inner join playlists playlists 
on playlists.playlist_id=playlist.playlist_id
and playlists.name = '$playlist_name'";