Jump to content

Sort results by avg of another table's column


msnider

Recommended Posts

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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.