SELECT
product.name,
COUNT(reviews) AS reviewCount,
ROUND(AVG(reviews.rating),1) AS avgRating,
product.color
FROM reviews
JOIN product ON KEYS reviews.productId
UNNEST product.categories AS category
WHERE category = "Appliances"
GROUP BY category, product
ORDER BY avgRating
DESC LIMIT 3
结果:
{
"results": [
{
"avgRating": 4.5,
"color": "azure",
"name": "Waring Pro IC70 Professional Stainless Steel Large-Capacity Ice Crusher",
"reviewCount": 2
},
{
"avgRating": 4,
"color": "green",
"name": "Air King AILT4 Lint Trap",
"reviewCount": 6
},
{
"avgRating": 3.4,
"color": "red",
"name": "Bosch HEZ1090 LP Conversion Kit for Bosch Free-standing Gas Ranges (300 and 500 Series)",
"reviewCount": 5
}
]
}