题解 | #某宝店铺动销率与售罄率#

某宝店铺动销率与售罄率

http://www.nowcoder.com/practice/715dd44c994f45cb871afa98f1b77538

题目

请你统计每款的动销率(pin_rate,有销售的SKU数量/在售SKU数量)与售罄率(sell-through_rate,GMV/备货值,备货值=吊牌价*库存数),按style_id升序排序,以上例子的输出结果如下:

解题思路
  1. 总共涉及两个表,产品情况表 product_tb,销售数据表 sales_tb 考虑到会有链接考点left join(我习惯用left join,一般会用全部涉及的哪个放在左边)
sales_tb s left join product_tb p on
s.item_id = p.item_id
# 两表链接后需要考虑product_tb这个表会有重复,需要distinct
  1. 涉及的
  • 有销售的sku sum(sales_num)
  • 在售sku数量 即库存-已售的 sum(distinct inventory)-sum(sales_num)
  • GMV sum(sales_price)
  • 备货值(备货值=吊牌价库存数) sum(distinct inventorytag_price)
  1. 考点
  • 保留两位 **round(XX,2)
  • 聚合 group by
  • 排序 order by
完整答案

select 
p.style_id,
round(sum(sales_num)/
(sum(distinct inventory)-sum(sales_num))*100,2) as pin_rate,
round(sum(sales_price)/
sum(distinct inventory*tag_price)*100,2) as sell_through_rate
from
sales_tb s left join product_tb p on
s.item_id = p.item_id
group by p.style_id
order by p.style_id
全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 12:19
点赞 评论 收藏
分享
美丽的查理斯不讲武德:包kpi的啊,感觉虾皮一点hc都没有
点赞 评论 收藏
分享
牛客410815733号:这是什么电影查看图片
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务