Đây là một trong những lợi thế của việc sử dụng JOIN
qua IN
vị ngữ:
SELECT
p.name,
COUNT(song_id) counter
FROM playlist p
INNER JOIN playlist_songs s ON p.id = s.playlist_id
GROUP BY playlist_id
HAVING COUNT(song_id) > 2;
Đây là một trong những lợi thế của việc sử dụng JOIN
qua IN
vị ngữ:
SELECT
p.name,
COUNT(song_id) counter
FROM playlist p
INNER JOIN playlist_songs s ON p.id = s.playlist_id
GROUP BY playlist_id
HAVING COUNT(song_id) > 2;