题解 | #店铺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

全部评论

相关推荐

Gaynes:查看图片
点赞 评论 收藏
分享
牛客刘北:如果暑期实习是27届的话,你要晚一年才会毕业,企业为什么会等你呢?要搞清时间逻辑呀!27届现在实习只能是在暑假实习,这是日常实习,不是暑期实习。所以多去投日常实习吧,暑期实习肯定不会要你的
点赞 评论 收藏
分享
07-17 11:56
门头沟学院 Java
感谢东子的收留
码农索隆:好好好,优秀优秀
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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