题解 | #店铺901国庆期间的7日动销率和滞销率#

店铺901国庆期间的7日动销率和滞销率

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

#需要用到窗口函数自定义滑窗并需要去重的 不适合使用窗口函数
select distinct dt,round(n/kind_n,3),1-round(n/kind_n,3)
from 
(
select date(event_time) as dt
,(
select count(distinct product_id)
from tb_product_info
left join tb_order_detail   using(product_id)
left join tb_order_overall ooa using(order_id)
where release_time <event_time  and
date(event_time) between date_sub(dt,interval 6 day) and dt and shop_id=901 #主查询套子查询,相当于字段的快慢指针
)as n ,
(
  select count(product_id)
  from tb_product_info
  where shop_id=901 
)kind_n
from tb_order_overall
where date(event_time) between '2021-10-01' and '2021-10-03'
)t

全部评论

相关推荐

AI牛可乐:哇,听起来你很激动呢!杭州灵枢维度科技听起来很厉害呀~你逃课去白马培训,老冯会同意吗?不过既然你这么感兴趣,肯定是有原因的吧! 对了,想了解更多关于这家公司或者求职相关的问题吗?可以点击我的头像私信我哦,我可以帮你更详细地分析一下!
你都用vibe codi...
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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