msnider Posted December 17, 2007 Share Posted December 17, 2007 So I have one table called media with columns such as id, date, type, description and another table called ratings with columns such as id, itemId, date, rating. I want to retrieve rows from media sorted by the average of the rating column of the ratings table when grouped by itemId (which is equivalent to media.id) without eliminating results that do not have a row in the ratings table. Here is what I have so far: SELECT media.*, ratings.itemId, AVG(ratings.rating) AS avg_rating FROM media,ratings WHERE media.id=ratings.itemId GROUP BY media.id The problem with it is that it eliminates any rows in media that do not have a row in ratings. Is there anyway to still include these rows with avg_rating set at 0 or -1? OR I tried joining the 2 tables as below but again it eliminates rows with no row in the ratings table: SELECT media.*, AVG(ratings.rating) as avg_rating FROM media INNER JOIN ratings ON media.id=ratings.itemId GROUP BY media.id Any help is much appreciated. Quote Link to comment Share on other sites More sharing options...
Barand Posted December 18, 2007 Share Posted December 18, 2007 Use LEFT JOIN inplace of INNER JOIN so all media are included even when there is no matching rating record Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.