yyyylx
yyyylx
全部文章
分类
归档
标签
去牛客网
登录
/
注册
yyyylx的博客
全部文章
(共3篇)
题解 | 查询出不同类别商品中,销售金额排名前三且利润率超过 20%的商品信息
with t1 as ( select p.product_id, p.product_name, p.category_id, s.sales_amount, round((s.sales_amount - s...
2025-06-15
0
22
题解 | 电商平台想要了解不同商品在不同月份的销售趋势
with t1 as ( select p.product_id, p.product_name, sum(s.quantity) as total_sales, round(sum(s.quantity) / count(d...
2025-06-15
0
19
题解 | 电商平台需要对商家的销售业绩、退款情况和客户满意度进行综合评估
with t1 as ( select m.merchant_id, m.merchant_name, sum(s.sale_amount) total_sales_amount from merchants_under...
2025-06-15
0
21