LoveToCode
MIS
- Jan 11, 2007
- 51
For the past couple days I've been trying to get this query to work correctly. I just re-wrote it to be more human readable, to help me debug it, but I'm still getting problems.
The main problem now is that 4 out of the 6 rows have every column completely null.
Thank you for looking at my query!
-- Jenni
The main problem now is that 4 out of the 6 rows have every column completely null.
Code:
alter procedure [dbo].[sp_someSite_user_playlist_getSongs]
@playlistId int
as
SELECT
-- MP3 table
Mp3.Mp3Id, Mp3.Mp3Name, Mp3.Mp3Src, Mp3.Artist, Mp3.TrackTitle, Mp3.Listens, Mp3.UserId, Mp3.DateAdded, Mp3.GenreId,
-- Artist
Artist.[name] ArtistName, Artist.ArtistId ArtistId,
-- ID3
ID3.BitRate, ID3.Mode, dbo.SecToMin(ID3.length) Length,
-- Album
Album.ImageSrc
FROM
someSite_user_playlist_songs PL
LEFT JOIN
someSite_mp3 Mp3
ON PL.Mp3Id = Mp3.Mp3Id
LEFT JOIN
theSite_artist Artist
ON Mp3.UserId = Artist.ArtistId
LEFT JOIN
theSite_mp3_id3 ID3
ON Mp3.Mp3Id = ID3.Mp3Id
LEFT JOIN
theSite_artist_album Album
ON Mp3.AlbumId = Album.AlbumId
WHERE
PL.PlaylistId=@playlistId
Thank you for looking at my query!
-- Jenni