views:

273

answers:

2

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
+1  A: 

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

Syntax

Jason
A: 

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
Kevin Fisher