SELECT 
  COUNT(product_review_id) as count, 
  AVG(rating_value) as avg 
FROM 
  ushop_product_reviews 
WHERE 
  product_id IN (299, 425, 536)

Query time 0.00042

Result

count avg
0