|
|
There was a problem opening the record set: Object invalid or no longer set. SELECT DISTINCT Artist.*, Song.*, Year.Year, Version.Hit, (SELECT Count(*) FROM xxSongVersion WHERE xxSongVersion.SongID = Song.SongID) AS Versions FROM (((((Artist LEFT JOIN xxSongArtist ON Artist.ArtistID = xxSongArtist.ArtistID) LEFT JOIN Song ON xxSongArtist.SongID = Song.SongID) LEFT JOIN xxSongVersion ON Song.SongID = xxSongVersion.SongID) LEFT JOIN Version ON xxSongVersion.VersionID = Version.VersionID) LEFT JOIN xxVersionYear ON Version.VersionID = xxVersionYear.VersionID) LEFT JOIN [Year] ON xxVersionYear.YearID = Year.YearID WHERE Artist.ArtistID = 3879 ORDER BY Artist.Artist, Song.Song; |