LoveToCode
MIS
- Jan 11, 2007
- 51
This query does NOT return a column called SONG COUNT, as I thought it would when I wrote it. If I run this by itself it returns expected results:
But this whole query doesn't include that column.. maybe a problem with my join?
Thanks.
Code:
select albumId, count (*) AS SongCount
from wisetopic_artist_album_mp3
group by albumId
But this whole query doesn't include that column.. maybe a problem with my join?
Code:
select
a.*,
genre1.Genre as Genre1,
genre2.Genre as Genre2
from wisetopic_artist_album A
-- get genres
left join wisetopic_mp3_genre genre1 on a.genreId1 = genre1.id
left join wisetopic_mp3_genre genre2 on a.genreId2 = genre2.id
-- get soung count
right join
(select albumId, count (*) AS SongCount
from wisetopic_artist_album_mp3
group by albumId) C
on A.albumId = C.albumId
where a.albumId=@albumId
Thanks.