SQL - Condición WHERE en SUM ()

¿Es posible hacer algo como esto?

SELECT 
  `e`.*, 
  `rt`.`review_id`, 
  (SUM(vt.percent) / COUNT(vt.percent)) AS rating 
FROM `catalog_product_entity` AS `e` 
INNER JOIN `rating_option_vote` AS `vt`
  ON vt.review_id = e.review_id 
WHERE (rating >= '0') 
GROUP BY `vt`.`review_id`

En particular, me gustaría poner una condición where en el valor del resultado de la división

Respuestas a la pregunta(4)

Su respuesta a la pregunta