题解 | #国庆期间近7日日均取消订单量#

国庆期间近7日日均取消订单量

http://www.nowcoder.com/practice/2b330aa6cc994ec2a988704a078a0703

提一点,如果没有group 就不能使用having,其次用where的话会在查询前删掉9月底的数据,所以是再子查询一遍进行过滤

select * from
(select dt,round(sum(ok) over(order by dt rows 
                     between 6 preceding and current row)/7,2),
  round(sum(cancel) over(order by dt rows between 6 preceding
                      and current row)/7,2)
from 
(select date_format(order_time,"%Y-%m-%d") as dt,
       sum(if(start_time is null ,1,0)) as cancel,
       sum(if(start_time is not null and
              finish_time is not null ,1,0)) as ok
from tb_get_car_order
group by dt) base) tmp
where dt between "2021-10-01" and "2021-10-03"



全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
耀孝女:就是你排序挂了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务