Copy SELECT product.name, product.productId, ROUND(AVG(reviews.rating), 3) avgRating, COUNT(reviews) numReviews
FROM product JOIN reviews ON KEYS product.reviewList
GROUP BY product HAVING AVG(reviews.rating) < 1
Copy {
"results": [
{
"avgRating": 0.75,
"name": "Britax B-Agile Stroller Child Tray",
"numReviews": 4,
"productId": "product83"
},
{
"avgRating": 0.667,
"name": "New Commercial Stainless Steel Salt / Pepper / Spice / Sugar Shaker, Shakers, Dredge, Dredges, Set of 2",
"numReviews": 6,
"productId": "product96"
},
{
"avgRating": 0.5,
"name": "Danze D481150 9-Inch Adjustable Shower Arm with High Flow, Chrome",
"numReviews": 6,
"productId": "product476"
},
{
"avgRating": 0.889,
"name": "Briggs & Riley Luggage Executive Clamshell Backpack",
"numReviews": 9,
"productId": "product10"
},
{
"avgRating": 0.889,
"name": "Tovolo Sphere Ice Molds, Set of 2",
"numReviews": 9,
"productId": "product53"
}
]
}