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

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

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

#思路:主要从下面三个步骤进行思考
select dt,
    round(if(n2 is null,0,n2)/n1,3) as sale_rate,
    1-round(if(n2 is null,0,n2)/n1,3) as unsale_rate
from(
    #1、根据上架时间确定截止当天在售的商品种数
    select date(event_time) as dt,
        count(distinct product_id) as n1
    from (
        select event_time
        from tb_order_overall
        where date(event_time) between '2021-10-01' and '2021-10-03'
    ) as tab1
    left join(
        select release_time,
            product_id
        from tb_product_info
        where shop_id = 901
    ) as tab2 on timestampdiff(second,release_time,event_time) >= 0
    group by date(event_time)
) as tab5
#3、将得到的上架商品总数表tab5与901店铺的销售情况表tab6用left join连接在一起
#这里用left join主要考虑店铺901当天的动销率为0的情况
left join(
    #2、使用left join 确定店铺901在10-01到10-03各自七天内有销售的商品
    select date(event_time) as dt,
        count(distinct product_id) as n2
    from (
        select event_time
        from tb_order_overall
        where date(event_time) between '2021-10-01' and '2021-10-03'
    ) as tab3
    left join(
        select date(event_time) as dt,
            product_id
        from tb_order_detail
        inner join tb_order_overall using(order_id)
        inner join tb_product_info using(product_id)
        where shop_id = 901
    ) as tab4 on timestampdiff(day,tab4.dt,date(tab3.event_time)) between 0 and 6
    group by date(event_time)
) as tab6 using(dt)

全部评论

相关推荐

04-02 10:09
门头沟学院 Java
用微笑面对困难:这里面问题还是很多的,我也不清楚为啥大家会感觉没啥问题。首先就是全栈开发实习9个月的内容都没有java实习生的内容多,1整个技术栈没看出太核心和难点的内容,感觉好像被拉过去打杂了,而且全栈基本上很容易被毙。里面能问的bug是在太多了比如L:继承 BaseMapper 可直接使用内置方法’。请问你的 BaseMapper 是如何扫描实体类注解如果瞬时产生 100 个上传任务,MySQL 的索引设计是否会有瓶颈?你做过分库分表或者索引优化吗?全栈的内容可以针对动态难点去搞,技能特长写在下面吧,你写了这么多技能,项目和实习体现了多少?你可以在项目里多做文章然后把这个放下去,从大致来看实习不算太水,有含金量你也要写上内容针对哨兵里面的节点变化能问出一万个问题,这个很容易就爆了。
提前批简历挂麻了怎么办
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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