5

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
mechanical_meat
  • 163,903
  • 24
  • 228
  • 223

2 Answers2

4

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

Syntax

Jason
  • 51,583
  • 38
  • 133
  • 185
3

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
  • 715
  • 6
  • 7