题解 | 电商平台需要对商品的销售和评价情况进行综合分析

电商平台需要对商品的销售和评价情况进行综合分析

https://www.nowcoder.com/practice/ccb441966a0342f2ab5fa8e76c33a3e6

select
a.product_id,
b.product_name,
sum(a.quantity) as total_quantity,
round(avg(c.avg_rating),2) as average_rating
from sales_underline a join products_underline b on a.product_id=b.product_id join (select product_id,avg(rating) as avg_rating from  reviews_underline group by product_id) c on a.product_id=c.product_id
where year(a.sale_date)=2024 and c.avg_rating<=4
group by a.product_id,b.product_name
order by average_rating,a.product_id

全部评论

相关推荐

头像
2025-12-27 13:01
三峡大学 C++
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务