Mike
Mike

Reputation:

MySQL where clause and ordering by avg() as a sub query

Although I can group and order by on an aliased sub query, I can't use the alias in a where clause. Do I need to use a join instead?

Works:

SELECT entries.*, 
    (SELECT avg(value) 
    FROM `ratings`
    WHERE ratings.entry_id = entries.id) as avg_rating
FROM `entries` 
ORDER BY avg_rating DESC

Fails ("unknown column 'avg_rating' in where clause"):

SELECT entries.*, 
    (SELECT avg(value) 
    FROM `ratings` 
    WHERE ratings.entry_id = entries.id) as avg_rating 
FROM `entries` 
WHERE avg_rating < '4.5000' ORDER BY avg_rating DESC

Upvotes: 5

Views: 9231

Answers (2)

Kevin Fisher
Kevin Fisher

Reputation: 715

I would do a join and groupby For example,

SELECT entries.*, AVG(value)
FROM entries INNER JOIN ratings ON entries.id = ratings.entry_id 
GROUP BY entries.*
HAVING AVG(value) < '4.5000' 
ORDER BY AVG(value)

Just psuedo code, I would also recommend you limit the entries columns to exactly what you need.

You might be able to get away with the alias such as:

SELECT entries.*, AVG(value) as avg_value
FROM entries INNER JOIN ratings ON entries.id = ratings.entry_id 
GROUP BY entries.*
HAVING avg_value < '4.5000' 
ORDER BY avg_value

Upvotes: 3

Jason
Jason

Reputation: 52523

You may be able to do this with a HAVING clause instead of a WHERE

Syntax

Upvotes: 4

Related Questions